aboutsummaryrefslogtreecommitdiffstats
path: root/hosts
diff options
context:
space:
mode:
authorMark Nipper <nipsy@bitgnome.net>2024-10-16 12:34:19 -0700
committerMark Nipper <nipsy@bitgnome.net>2024-10-16 12:34:19 -0700
commit2b31e43f79db6d970ef2462e063c52c7bf2d4115 (patch)
treef0d513e0c3b476e51419ecd87a7fc22ae7e42724 /hosts
parent3e0727536d6a9da1f0978dc3f561bccca330f21d (diff)
downloadnix-2b31e43f79db6d970ef2462e063c52c7bf2d4115.tar
nix-2b31e43f79db6d970ef2462e063c52c7bf2d4115.tar.gz
nix-2b31e43f79db6d970ef2462e063c52c7bf2d4115.tar.bz2
nix-2b31e43f79db6d970ef2462e063c52c7bf2d4115.tar.lz
nix-2b31e43f79db6d970ef2462e063c52c7bf2d4115.tar.xz
nix-2b31e43f79db6d970ef2462e063c52c7bf2d4115.tar.zst
nix-2b31e43f79db6d970ef2462e063c52c7bf2d4115.zip
Fix deprecated option
Diffstat (limited to 'hosts')
-rw-r--r--hosts/arrakis/hardware-configuration.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/hosts/arrakis/hardware-configuration.nix b/hosts/arrakis/hardware-configuration.nix
index 73ebd9b..34fe230 100644
--- a/hosts/arrakis/hardware-configuration.nix
+++ b/hosts/arrakis/hardware-configuration.nix
@@ -85,13 +85,13 @@
hardware = {
bluetooth.enable = true;
+ graphics.extraPackages = with pkgs; [
+ vaapiVdpau
+ ];
nvidia = {
modesetting.enable = true;
open = true;
package = config.boot.kernelPackages.nvidiaPackages.beta;
};
- opengl.extraPackages = with pkgs; [
- vaapiVdpau
- ];
};
}