dotfiles/systems/server/graphics.nix
2024-11-03 17:52:46 -06:00

15 lines
290 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"];
}