dotfiles/systems/desktop/graphics.nix

16 lines
290 B
Nix
Raw Normal View History

2024-10-06 15:25:05 -05:00
{pkgs, ...}: {
hardware = {
graphics = {
enable = true;
extraPackages = with pkgs; [
rocmPackages.clr.icd
2024-10-27 21:30:14 -05:00
amdvlk
2024-10-06 15:25:05 -05:00
];
2024-10-27 21:30:14 -05:00
extraPackages32 = with pkgs; [
driversi686Linux.amdvlk
2024-10-06 15:25:05 -05:00
];
};
};
boot.initrd.kernelModules = ["amdgpu"];
}