nixos-config/modules/hardware/amdgpu.nix

12 lines
171 B
Nix
Raw Normal View History

2021-08-31 16:01:29 +00:00
{
pkgs, ...
}:
{
environment.systemPackages = with pkgs; [
unstable.mesa
unstable.firmwareLinuxNonfree
];
services.xserver.videoDrivers = [ "amdgpu" ];
}