nix-config/hosts/modules/rotterdam/hardware.nix
2025-04-22 17:25:05 -03:00

11 lines
184 B
Nix

{ pkgs, ... }:
{
hardware = {
amdgpu = {
opencl.enable = true;
amdvlk.enable = true;
};
graphics.extraPackages = with pkgs; [ rocmPackages.clr.icd ];
};
}