11 lines
198 B
Nix
11 lines
198 B
Nix
{ pkgs, ... }:
|
|
{
|
|
boot = {
|
|
kernelPackages = pkgs.linuxPackages_latest;
|
|
kernelParams = [
|
|
"amdgpu.si_support=1"
|
|
"radeon.si_support=0"
|
|
];
|
|
loader.grub.enable = true;
|
|
};
|
|
}
|