mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 22:43:55 -05:00
15 lines
221 B
Nix
15 lines
221 B
Nix
|
{...}: {
|
||
|
environment.variables.VDPAU_DRIVER = "radeonsi";
|
||
|
|
||
|
hardware.amdgpu = {
|
||
|
initrd.enable = true;
|
||
|
|
||
|
amdvlk = {
|
||
|
enable = true;
|
||
|
support32Bit.enable = true;
|
||
|
};
|
||
|
|
||
|
opencl.enable = true;
|
||
|
};
|
||
|
}
|