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

11 lines
169 B
Nix
Raw Normal View History

2025-03-08 17:34:36 -05:00
{ pkgs, ... }:
{
2025-03-07 18:06:08 -05:00
boot = {
kernelPackages = pkgs.linuxPackages_latest;
kernelParams = [
"radeon.cik_support=0"
"amdgpu.cik_support=1"
];
};
}