nixos-config/hosts/redmond/boot/default.nix

11 lines
163 B
Nix
Raw Normal View History

2025-02-27 11:42:57 -05:00
{ ... }:
{
2025-03-07 18:06:08 -05:00
boot = {
kernelPackages = pkgs.linuxPackages_latest;
kernelParams = [
"radeon.cik_support=0"
"amdgpu.cik_support=1"
];
};
}