nixnew/systems/lenovo/hardware.nix

17 lines
310 B
Nix
Raw Normal View History

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
];
};
}