zaneyos/config/system/amd-opengl.nix
2024-01-23 17:43:03 -06:00

14 lines
329 B
Nix

{ pkgs, config, lib, gpuType, ... }:
lib.mkIf ("${gpuType}" == "amd") {
# OpenGL
hardware.opengl = {
enable = true;
driSupport = true;
driSupport32Bit = true;
## amdvlk: an open-source Vulkan driver from AMD
extraPackages = [ pkgs.amdvlk ];
extraPackages32 = [ pkgs.driversi686Linux.amdvlk ];
};
}