11 lines
217 B
Nix
11 lines
217 B
Nix
{
|
|
# load graphics drivers before anything else
|
|
boot.initrd.kernelModules = [ "amdgpu" ];
|
|
|
|
hardware.graphics = {
|
|
enable = true;
|
|
enable32Bit = true;
|
|
};
|
|
|
|
services.xserver.videoDrivers = [ "amdgpu" ];
|
|
}
|