diff options
author | Mark Nipper <nipsy@bitgnome.net> | 2024-10-16 12:34:19 -0700 |
---|---|---|
committer | Mark Nipper <nipsy@bitgnome.net> | 2024-10-16 12:34:19 -0700 |
commit | 2b31e43f79db6d970ef2462e063c52c7bf2d4115 (patch) | |
tree | f0d513e0c3b476e51419ecd87a7fc22ae7e42724 | |
parent | 3e0727536d6a9da1f0978dc3f561bccca330f21d (diff) | |
download | nix-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 '')
-rw-r--r-- | hosts/arrakis/hardware-configuration.nix | 6 |
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 - ]; }; } |