diff --git a/builtinModules/packages.nix b/builtinModules/packages.nix index 1a38df1..68aaea6 100644 --- a/builtinModules/packages.nix +++ b/builtinModules/packages.nix @@ -75,7 +75,8 @@ in outputs = rec { packages = genSystems (pkgs: - filterAttrs (_: supportedSystem pkgs) (genPkgs pkgs)); + filterAttrs (_: supportedSystem pkgs) + (mapAttrs (k: _: pkgs.${k}) config.packages)); checks = mapAttrs (_: mapAttrs' (n: nameValuePair ("packages-" + n)))