11 lines
169 B
Nix
11 lines
169 B
Nix
{ pkgs, ... }:
|
|
{
|
|
boot = {
|
|
kernelPackages = pkgs.linuxPackages_latest;
|
|
kernelParams = [
|
|
"radeon.cik_support=0"
|
|
"amdgpu.cik_support=1"
|
|
];
|
|
};
|
|
}
|