zaneyos/config/system/amd-opengl.nix

11 lines
203 B
Nix
Raw Normal View History

{ pkgs, config, lib, deviceProfile, ... }:
lib.mkIf ("${deviceProfile}" == "amd-desktop") {
# OpenGL
hardware.opengl = {
enable = true;
driSupport = true;
driSupport32Bit = true;
};
}