nixos/system/steam.nix
Evie Litherland-Smith bd6f59bb8f Disable capSysNice for gamescope to fix an issues launching games
Add gamescope args for Vanguard

Inhibit idle when gamescope is running
2025-02-08 18:12:13 +00:00

21 lines
450 B
Nix

{ username, ... }:
{
hardware.steam-hardware.enable = true;
programs = {
gamemode.enable = true;
steam = {
enable = true;
remotePlay.openFirewall = true;
gamescopeSession.enable = true;
};
gamescope = {
enable = true;
capSysNice = false; # Currently a bug with starting Steam games
};
};
home-manager.users.${username}.programs.mangohud = {
enable = true;
settings.preset = 2;
};
}