no more gamescope. sorry

This commit is contained in:
Reid 2026-06-10 20:43:03 -07:00
parent b1e9b6271e
commit 0c0be56623
Signed by: reidlab
GPG key ID: DAF5EAF6665839FD

View file

@ -46,26 +46,6 @@ in {
dedicatedServer.openFirewall = true;
};
# TODO: make it so that this wrapper encompasses steam's gamescope
# this would make it so we don't have to put the config each time, like this:
# gamescope --expose-wayland --adaptive-sync -f -W 1920 -H 1080 -w 1920 -h 1080 -- %command%
programs.gamescope = {
enable = cfg.gamescope;
args = [
"--expose-wayland"
"--adaptive-sync"
"-f"
"-W 1920"
"-H 1080"
"-w 1920"
"-h 1080"
];
};
# enable windows NT sync primitive driver (semaphores, mutexes, etc.)
# improves performance on wine 11+ and proton 11+
boot.kernelModules = [ "ntsync" ];