diff --git a/system/Vanguard.nix b/system/Vanguard.nix index 0fa044e3..7d93b24b 100644 --- a/system/Vanguard.nix +++ b/system/Vanguard.nix @@ -22,6 +22,7 @@ lutris cartridges prismlauncher + (writeShellScriptBin "steamscope" " gamescope -e -- steam -gamepaduid ") ]; programs.obs-studio = { enable = true; @@ -75,11 +76,23 @@ steam-hardware.enable = true; }; programs = { + gamemode.enable = true; steam = { enable = true; remotePlay.openFirewall = true; gamescopeSession.enable = true; }; - gamemode.enable = true; + gamescope = { + enable = true; + capSysNice = true; + args = [ + "-W 2560" + "-H 1440" + "-r 165" + "--expose-wayland" + "--fullscreen" + "--adaptive-sync" + ]; + }; }; }