7 lines
159 B
Nix
7 lines
159 B
Nix
|
{
|
||
|
imports = [./gpu.sys.nix];
|
||
|
boot.initrd.kernelModules = [ "amdgpu" ];
|
||
|
services.xserver.enable = true;
|
||
|
services.xserver.videoDrivers = [ "amdgpu" ];
|
||
|
}
|