2023-06-20 04:08:11 +00:00
|
|
|
{ pkgs, ... }: {
|
2023-06-21 10:52:24 +00:00
|
|
|
imports = [ ./hardware-configuration.nix ];
|
2023-06-20 04:08:11 +00:00
|
|
|
|
|
|
|
hardware.opengl = {
|
|
|
|
enable = true;
|
|
|
|
driSupport = true;
|
|
|
|
driSupport32Bit = true;
|
|
|
|
extraPackages = with pkgs; [
|
|
|
|
rocm-opencl-icd
|
|
|
|
amdvlk
|
|
|
|
];
|
|
|
|
extraPackages32 = with pkgs; [
|
|
|
|
driversi686Linux.amdvlk
|
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|