dotfiles/systems/deimos/config/graphics.nix

19 lines
255 B
Nix
Raw Normal View History

2025-10-01 19:51:55 -05:00
{ pkgs, ... }:
{
hardware = {
graphics = {
enable = true;
extraPackages = builtins.attrValues {
2025-10-04 02:29:05 -05:00
2025-10-01 19:51:55 -05:00
inherit (pkgs.rocmPackages.clr)
icd
;
};
2025-10-04 02:29:05 -05:00
2025-10-01 19:51:55 -05:00
};
};
boot.initrd.kernelModules = [
"amdgpu"
];
}