This commit is contained in:
2026-03-08 16:24:24 +00:00
parent 0a955151d0
commit 0aa8606153
3 changed files with 30 additions and 1 deletions

View File

@@ -50,4 +50,10 @@
in {
den.default.nixos.nixpkgs.overlays = overlays;
den.default.darwin.nixpkgs.overlays = overlays;
flake.overlays.default = final: prev:
builtins.foldl' (
acc: overlay: acc // (overlay final (prev // acc))
) {}
overlays;
}