Vanguard: enable gamemode with args

This commit is contained in:
Evie Litherland-Smith 2024-09-13 11:08:12 +01:00
parent 4ee27f199a
commit eea6ae1f75

View file

@ -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"
];
};
};
}