nixnew/systems/msi/hardware.nix

19 lines
312 B
Nix
Raw Normal View History

2023-07-27 08:17:17 +00:00
{ pkgs, ... }: {
imports = [ ./hardware-configuration.nix ];
hardware.opengl = {
enable = true;
driSupport = true;
driSupport32Bit = true;
extraPackages = with pkgs; [
rocm-opencl-icd
amdvlk
];
extraPackages32 = with pkgs; [
driversi686Linux.amdvlk
];
};
}