nixos/system/steam.nix
Evie Litherland-Smith d5ff4bfe1e Update gamescope system config
Move some things from desktop to gamescope, so gamescope doesn't
depend on other desktop specific settings (like xserver)
2023-12-25 19:23:56 +00:00

18 lines
301 B
Nix

{ ... }: {
hardware = {
opengl.driSupport32Bit = true;
steam-hardware.enable = true;
};
programs = {
xwayland.enable = true;
gamescope = {
enable = true;
capSysNice = true;
};
steam = {
enable = true;
remotePlay.openFirewall = true;
};
};
}