diff options
| author | seth <[email protected]> | 2024-11-12 04:11:09 -0500 |
|---|---|---|
| committer | seth <[email protected]> | 2024-11-12 04:11:09 -0500 |
| commit | 11d3eb7a488594356bad35cc0f58b5836f43074b (patch) | |
| tree | cb486a998ebc64e56e937e22eb16b7c845e1d2a8 | |
| parent | e9d126d4694e15233b814ca5801f5c80dc2bb32c (diff) | |
glados: pin nvidia drivers to production
| -rw-r--r-- | systems/glados/default.nix | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/systems/glados/default.nix b/systems/glados/default.nix index 718831e..91e3348 100644 --- a/systems/glados/default.nix +++ b/systems/glados/default.nix @@ -1,4 +1,4 @@ -{ inputs, ... }: +{ config, inputs, ... }: { imports = [ ./boot.nix @@ -14,6 +14,8 @@ gnome.enable = true; }; + hardware.nvidia.package = config.boot.kernelPackages.nvidiaPackages.production; + networking = { hostName = "glados"; networkmanager.enable = true; |
