nixos/system/steam.nix

18 lines
301 B
Nix
Raw Normal View History

{ ... }: {
2023-09-16 17:58:43 +01:00
hardware = {
opengl.driSupport32Bit = true;
steam-hardware.enable = true;
};
programs = {
xwayland.enable = true;
gamescope = {
enable = true;
capSysNice = true;
};
steam = {
enable = true;
remotePlay.openFirewall = true;
};
};
}