add overlays which use our custom nixpkgs
All checks were successful
cache / build (push) Successful in 21s

This commit is contained in:
2025-11-11 18:12:19 +04:00
parent 981ad4307b
commit b6dde58eca

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);
};
}
);
} }