12 lines
171 B
Nix
12 lines
171 B
Nix
|
{
|
||
|
pkgs, ...
|
||
|
}:
|
||
|
|
||
|
{
|
||
|
environment.systemPackages = with pkgs; [
|
||
|
unstable.mesa
|
||
|
unstable.firmwareLinuxNonfree
|
||
|
];
|
||
|
services.xserver.videoDrivers = [ "amdgpu" ];
|
||
|
}
|