nixos-config/common/hardware/amdgpu.nix

17 lines
326 B
Nix
Raw Normal View History

2024-04-08 20:32:17 +02:00
{
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"];
}