14 lines
218 B
Nix
14 lines
218 B
Nix
![]() |
{ ... }:
|
||
|
|
||
|
{
|
||
|
services.xserver.videoDrivers = [ "amdgpu" ];
|
||
|
|
||
|
hardware = {
|
||
|
graphics.enable = true;
|
||
|
};
|
||
|
|
||
|
hardware.amdgpu.amdvlk = {
|
||
|
enable = true;
|
||
|
support32Bit.enable = true;
|
||
|
};
|
||
|
}
|