summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--common.nix2
-rw-r--r--mini/configuration.nix2
-rw-r--r--neko/configuration.nix2
3 files changed, 3 insertions, 3 deletions
diff --git a/common.nix b/common.nix
index 554217e..1c14805 100644
--- a/common.nix
+++ b/common.nix
@@ -445,7 +445,7 @@ in
};
# OpenGL
- hardware.opengl.enable = true;
+ hardware.graphics.enable = true;
# try to ensure we can use our network LaserJet
services.printing.enable = true;
diff --git a/mini/configuration.nix b/mini/configuration.nix
index 23f103c..2f139e9 100644
--- a/mini/configuration.nix
+++ b/mini/configuration.nix
@@ -15,7 +15,7 @@
];
# amd graphics
- hardware.opengl.extraPackages = with pkgs; [ amdvlk rocm-opencl-icd rocm-opencl-runtime ];
+ hardware.graphics.extraPackages = with pkgs; [ amdvlk rocm-opencl-icd rocm-opencl-runtime ];
# our hostname and an ID for ZFS
networking.hostName = "mini";
diff --git a/neko/configuration.nix b/neko/configuration.nix
index 7c42433..a2fc5c8 100644
--- a/neko/configuration.nix
+++ b/neko/configuration.nix
@@ -15,7 +15,7 @@
];
# intel graphics
- hardware.opengl.extraPackages = with pkgs; [ intel-media-driver intel-compute-runtime ];
+ hardware.graphics.extraPackages = with pkgs; [ intel-media-driver intel-compute-runtime ];
# our hostname and an ID for ZFS
networking.hostName = "neko";