mirror of
https://github.com/NixOS/nixos-hardware.git
synced 2025-11-06 18:08:38 +08:00
fix(common/gpu/amd): use new rocmPackages
This commit is contained in:
committed by
mergify[bot]
parent
3d4a18fac8
commit
fb6af288f6
@@ -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 ];
|
||||||
})
|
})
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user