diff options
Diffstat (limited to 'hosts/niuwux/default.nix')
| -rw-r--r-- | hosts/niuwux/default.nix | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/hosts/niuwux/default.nix b/hosts/niuwux/default.nix index 796dc17..7e05c79 100644 --- a/hosts/niuwux/default.nix +++ b/hosts/niuwux/default.nix @@ -76,7 +76,7 @@ # capSysNice = true; }; programs.steam = { - enable = true; + enable = false; protontricks.enable = true; gamescopeSession.enable = false; remotePlay.openFirewall = true; @@ -107,11 +107,15 @@ networking.firewall.enable = true; programs.direnv.enable = true; - environment.systemPackages = with pkgs; [ - vulkan-tools - pciutils - mangohud - ]; + environment.systemPackages = + with pkgs; + [ + vulkan-tools + pciutils + ] + ++ lib.optionals config.programs.steam.enable [ + mangohud + ]; services.xserver.videoDrivers = [ "nvidia" ]; hardware = { |
