dotfiles/systems/desktop/graphics.nix
2024-10-27 21:30:14 -05:00

16 lines
291 B
Nix
Executable file

{pkgs, ...}: {
hardware = {
graphics = {
enable = true;
extraPackages = with pkgs; [
rocmPackages.clr.icd
amdvlk
];
extraPackages32 = with pkgs; [
driversi686Linux.amdvlk
];
};
};
boot.initrd.kernelModules = ["amdgpu"];
}