dotfiles/modules/amdgpu.sys.nix

7 lines
159 B
Nix
Raw Normal View History

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