nixos/desktop/gamescope.nix
Evie Litherland-Smith b388bdae94 Add gamescope as desktop session, default to no autoUpgrade
Set autoUpgrade config for Legion as it's on all the time
Remove xrdp
2023-06-06 08:00:37 +01:00

12 lines
273 B
Nix

{...}: {
imports = [./sddm.nix];
programs.gamescope.enable = true;
programs.steam = {
enable = true;
remotePlay.openFirewall = true;
gamescopeSession.enable = true;
};
hardware.steam-hardware.enable = true;
hardware.opengl.driSupport32Bit = true;
}