diff --git a/hosts/Zephyrus/default.nix b/hosts/Zephyrus/default.nix index 7e96513..bcb4a30 100644 --- a/hosts/Zephyrus/default.nix +++ b/hosts/Zephyrus/default.nix @@ -51,7 +51,16 @@ ]; # NVIDIA - nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) ["nvidia-x11" "nvidia-settings"]; + nixpkgs.config.allowUnfreePredicate = pkg: + builtins.elem (lib.getName pkg) [ + # NVIDIA + "nvidia-x11" + "nvidia-settings" + # Steam + "steam" + "steam-original" + "steam-run" + ]; hardware.graphics.enable = true;