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. ]; }; };