1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-06-30 00:18:31 +02:00

fix(common/gpu/amd): use new rocmPackages

This commit is contained in:
Bernardo Meurer 2023-10-10 16:23:31 -04:00 committed by mergify[bot]
parent 3d4a18fac8
commit fb6af288f6

View File

@ -10,7 +10,7 @@
"use amdvlk drivers instead mesa radv drivers" "use amdvlk drivers instead mesa radv drivers"
); );
options.hardware.amdgpu.opencl = lib.mkEnableOption (lib.mdDoc options.hardware.amdgpu.opencl = lib.mkEnableOption (lib.mdDoc
"rocm opencl runtime (Install rocm-opencl-icd and rocm-opencl-runtime)" "rocm opencl runtime (Install rocmPackages.clr and rocmPackages.clr.icd)"
) // { ) // {
default = true; default = true;
}; };
@ -37,10 +37,10 @@
]; ];
}) })
(lib.mkIf config.hardware.amdgpu.opencl { (lib.mkIf config.hardware.amdgpu.opencl {
hardware.opengl.extraPackages = with pkgs; [ hardware.opengl.extraPackages =
rocm-opencl-icd if pkgs ? rocmPackages.clr
rocm-opencl-runtime then with pkgs.rocmPackages; [ clr clr.icd ]
]; else with pkgs; [ rocm-opencl-icd rocm-opencl-runtime ];
}) })
]; ];
} }