mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-23 13:59:54 -05:00
19 lines
277 B
Nix
19 lines
277 B
Nix
{...}: {
|
|
environment.variables.VDPAU_DRIVER = "radeonsi";
|
|
|
|
hardware = {
|
|
amdgpu = {
|
|
initrd.enable = true;
|
|
|
|
amdvlk = {
|
|
enable = true;
|
|
support32Bit.enable = true;
|
|
};
|
|
|
|
opencl.enable = true;
|
|
};
|
|
|
|
graphics.enable = true;
|
|
};
|
|
}
|