Vanguard: enable gamemode with args
This commit is contained in:
parent
4ee27f199a
commit
eea6ae1f75
|
@ -22,6 +22,7 @@
|
||||||
lutris
|
lutris
|
||||||
cartridges
|
cartridges
|
||||||
prismlauncher
|
prismlauncher
|
||||||
|
(writeShellScriptBin "steamscope" " gamescope -e -- steam -gamepaduid ")
|
||||||
];
|
];
|
||||||
programs.obs-studio = {
|
programs.obs-studio = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
@ -75,11 +76,23 @@
|
||||||
steam-hardware.enable = true;
|
steam-hardware.enable = true;
|
||||||
};
|
};
|
||||||
programs = {
|
programs = {
|
||||||
|
gamemode.enable = true;
|
||||||
steam = {
|
steam = {
|
||||||
enable = true;
|
enable = true;
|
||||||
remotePlay.openFirewall = true;
|
remotePlay.openFirewall = true;
|
||||||
gamescopeSession.enable = true;
|
gamescopeSession.enable = true;
|
||||||
};
|
};
|
||||||
gamemode.enable = true;
|
gamescope = {
|
||||||
|
enable = true;
|
||||||
|
capSysNice = true;
|
||||||
|
args = [
|
||||||
|
"-W 2560"
|
||||||
|
"-H 1440"
|
||||||
|
"-r 165"
|
||||||
|
"--expose-wayland"
|
||||||
|
"--fullscreen"
|
||||||
|
"--adaptive-sync"
|
||||||
|
];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue