From 22d4694bbd3b7e914c75859bca6ebaeda383e03b Mon Sep 17 00:00:00 2001 From: Ahwx Date: Thu, 24 Apr 2025 16:40:11 +0200 Subject: [PATCH] fix: move `hardware.nvidia.open` down a level so it works --- roles/nvidia.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/roles/nvidia.nix b/roles/nvidia.nix index 3aa0ebf..75ee3f6 100644 --- a/roles/nvidia.nix +++ b/roles/nvidia.nix @@ -16,15 +16,15 @@ in config = mkIf cfg.enable { hardware = { enableRedistributableFirmware = true; + nvidia.open = false; # Set to false/true for proprietary/open drivers graphics = { enable = true; - nvidia.open = false; # Set to false/true for proprietary/open drivers extraPackages = with pkgs; [ - # amdvlk + # amdvlk would be the package that would be required for AMD on desktop, since none of the hosts use NVIDIA as a desktop GPU, this is open and uncertain. ]; # For 32 bit applications as well extraPackages32 = with pkgs; [ - # driversi686Linux.amdvlk + # driversi686Linux.amdvlk would be the package that would be required for AMD on desktop, since none of the hosts use NVIDIA as a desktop GPU, this is open and uncertain. ]; }; };