Files
nix-config/hosts/common/optional/gaming.nix
2025-02-16 06:35:32 +00:00

23 lines
360 B
Nix

{
pkgs,
...
}:
{
programs = {
steam = {
enable = true;
gamescopeSession.enable = true;
};
# to run steam games in game mode, add the following to the game's properties from within steam
# gamemoderun %command%
gamemode.enable = true;
};
environment.systemPackages = with pkgs; [
mangohud
protonup-qt
];
}