13 lines
264 B
Nix
13 lines
264 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
hardware = {
|
|
amdgpu = {
|
|
opencl.enable = true;
|
|
amdvlk.enable = true;
|
|
};
|
|
graphics.extraPackages = with pkgs; [ rocmPackages.clr.icd ];
|
|
};
|
|
|
|
systemd.targets.hibernate.enable = false; # disable non-functional hibernate
|
|
}
|