mirror of
https://github.com/NixOS/nixos-hardware.git
synced 2025-11-05 01:37:24 +08:00
9 lines
162 B
Nix
9 lines
162 B
Nix
{
|
|
imports = [ ../. ];
|
|
# Explicitly set amdgpu support in place of radeon
|
|
boot.kernelParams = [
|
|
"radeon.cik_support=0"
|
|
"amdgpu.cik_support=1"
|
|
];
|
|
}
|