mirror of
https://gitlab.com/Zaney/zaneyos.git
synced 2024-11-26 00:23:10 +01:00
11 lines
203 B
Nix
11 lines
203 B
Nix
{ pkgs, config, lib, deviceProfile, ... }:
|
|
|
|
lib.mkIf ("${deviceProfile}" == "amd-desktop") {
|
|
# OpenGL
|
|
hardware.opengl = {
|
|
enable = true;
|
|
driSupport = true;
|
|
driSupport32Bit = true;
|
|
};
|
|
}
|