From d8bfbbf614881a110059f14bc2a5d28c5df115e5 Mon Sep 17 00:00:00 2001 From: Dom Rodriguez Date: Thu, 18 Jul 2024 15:58:55 +0100 Subject: [PATCH] fix: Add more aliases to 24.05-compat We're using these options too, which breaks builds without this commit. Fixes: #1045 Signed-off-by: Dom Rodriguez --- common/gpu/24.05-compat.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/common/gpu/24.05-compat.nix b/common/gpu/24.05-compat.nix index 3e3495f..1750888 100644 --- a/common/gpu/24.05-compat.nix +++ b/common/gpu/24.05-compat.nix @@ -9,5 +9,7 @@ (lib.mkAliasOptionModule [ "hardware" "graphics" "extraPackages" ] [ "hardware" "opengl" "extraPackages" ]) (lib.mkAliasOptionModule [ "hardware" "graphics" "extraPackages32" ] [ "hardware" "opengl" "extraPackages32" ]) (lib.mkAliasOptionModule [ "hardware" "graphics" "enable32Bit" ] [ "hardware" "opengl" "driSupport32Bit" ]) + (lib.mkAliasOptionModule [ "hardware" "graphics" "package" ] [ "hardware" "opengl" "package" ]) + (lib.mkAliasOptionModule [ "hardware" "graphics" "package32" ] [ "hardware" "opengl" "package32" ]) ]; }