Files
nix-config/hosts/common/specialisations/gaming.nix

21 lines
467 B
Nix

{ pkgs, ... }:
{
specialisation.gaming.configuration = {
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;
};
powerManagement.cpuFreqGovernor = "performance";
environment.systemPackages = with pkgs; [ mangohud protonup-qt ];
};
}