summaryrefslogtreecommitdiff
path: root/systems/glados/nvidia.nix
diff options
context:
space:
mode:
Diffstat (limited to 'systems/glados/nvidia.nix')
-rw-r--r--systems/glados/nvidia.nix10
1 files changed, 10 insertions, 0 deletions
diff --git a/systems/glados/nvidia.nix b/systems/glados/nvidia.nix
new file mode 100644
index 0000000..afba1b2
--- /dev/null
+++ b/systems/glados/nvidia.nix
@@ -0,0 +1,10 @@
+{inputs, ...}: {
+ imports = with inputs; [
+ nixos-hardware.nixosModules.common-gpu-nvidia-nonprime
+ nixos-hardware.nixosModules.common-pc-ssd
+ ];
+
+ hardware.nvidia = {
+ modesetting.enable = true;
+ };
+}