bump-helium #2

Manually merged
nikkuss merged 6 commits from bump-helium into main 2025-11-11 17:31:10 +00:00
Showing only changes of commit b6dde58eca - Show all commits

View File

@@ -12,13 +12,8 @@
nixpkgs, nixpkgs,
flake-utils, flake-utils,
}@inputs: }@inputs:
(nixpkgs.lib.recursiveUpdate
{ (flake-utils.lib.eachSystem
overlays.default =
final: prev: ((import "${nixpkgs}/pkgs/top-level/by-name-overlay.nix" ./pkgs/by-name) final prev);
}
//
flake-utils.lib.eachSystem
[ [
"x86_64-linux" "x86_64-linux"
"aarch64-linux" "aarch64-linux"
@@ -73,8 +68,17 @@
# ); # );
in in
{ {
overlays.default = final: prev: flatPackages;
packages = flatPackages; packages = flatPackages;
checks = lib.mapAttrs' (n: lib.nameValuePair "package-${n}") workingPackages; checks = lib.mapAttrs' (n: lib.nameValuePair "package-${n}") workingPackages;
} }
)
)
{
overlays = {
default =
final: prev: ((import "${nixpkgs}/pkgs/top-level/by-name-overlay.nix" ./pkgs/by-name) final prev);
};
}
); );
} }