dotfiles/modules/amdgpu.sys.nix

7 lines
155 B
Nix
Raw Permalink Normal View History

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