diff --git a/systems/laptop/graphics.nix b/systems/laptop/graphics.nix index 2ef537d..04c4f5c 100755 --- a/systems/laptop/graphics.nix +++ b/systems/laptop/graphics.nix @@ -3,13 +3,11 @@ graphics = { enable = true; extraPackages = with pkgs; [ - rocm-opencl-icd - rocm-opencl-runtime rocmPackages.clr.icd - pkgs.amdvlk + amdvlk ]; - extraPackages32 = [ - pkgs.driversi686Linux.amdvlk + extraPackages32 = with pkgs; [ + driversi686Linux.amdvlk ]; }; }; diff --git a/systems/server/graphics.nix b/systems/server/graphics.nix index d2a1683..3c86622 100755 --- a/systems/server/graphics.nix +++ b/systems/server/graphics.nix @@ -3,8 +3,6 @@ graphics = { enable = true; extraPackages = with pkgs; [ - rocm-opencl-icd - rocm-opencl-runtime rocmPackages.clr.icd pkgs.amdvlk ];