17 lines
326 B
Nix
17 lines
326 B
Nix
{
|
|
boot = {
|
|
initrd.kernelModules = ["amdgpu"];
|
|
|
|
# params for Sea Islands or smth
|
|
kernelParams = ["radeon.cik_support=0" "amdgpu.cik_support=1"];
|
|
};
|
|
|
|
hardware.opengl = {
|
|
enable = true; # Mesa
|
|
driSupport = true; # Vulkan
|
|
driSupport32Bit = true;
|
|
};
|
|
|
|
services.xserver.videoDrivers = ["amdgpu"];
|
|
}
|