dotfiles/modules/amdgpu.sys.nix

7 lines
161 B
Nix
Raw Normal View History

2023-01-12 17:50:46 +00:00
{
2023-01-13 06:42:21 +00:00
imports = [ ./gpu.sys.nix ];
2023-01-12 17:50:46 +00:00
boot.initrd.kernelModules = [ "amdgpu" ];
services.xserver.enable = true;
services.xserver.videoDrivers = [ "amdgpu" ];
}