ahuston-0 a7e8bcb04c fmt
Signed-off-by: ahuston-0 <aliceghuston@gmail.com>
2024-04-13 22:21:28 -04:00

19 lines
325 B
Nix

{
config,
lib,
pkgs,
...
}:
{
hardware.opengl = {
## radv: an open-source Vulkan driver from freedesktop
driSupport = true;
driSupport32Bit = true;
## amdvlk: an open-source Vulkan driver from AMD
extraPackages = [ pkgs.amdvlk ];
extraPackages32 = [ pkgs.driversi686Linux.amdvlk ];
};
}