nix-config/hosts/common/optional/gaming/steam.nix
2024-01-07 15:43:08 +01:00

17 lines
257 B
Nix

{
config,
lib,
pkgs,
...
}: {
programs = {
steam = {
enable = true;
};
};
xdg.mime = {
defaultApplications."x-scheme-handler/steam" = "steam.desktop";
addedAssociations."x-scheme-handler/steam" = "steam.desktop";
};
}