1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
# collection of fun workarounds for the stable branch of nixos { lib, ... }: { imports = lib.optionals (lib.versionOlder lib.version "24.11pre") [ # https://github.com/NixOS/nixpkgs/pull/320228 (lib.mkAliasOptionModule [ "hardware" "graphics" "extraPackages" ] [ "hardware" "opengl" "extraPackages" ] ) ]; }