From d6f58595ebc9df6c21c3c898447dfe3adb26b540 Mon Sep 17 00:00:00 2001 From: Nick Date: Sun, 3 Nov 2024 00:26:41 -0500 Subject: [PATCH] chore: removed deprecated packages --- systems/laptop/graphics.nix | 8 +++----- systems/server/graphics.nix | 2 -- 2 files changed, 3 insertions(+), 7 deletions(-) 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 ];