fix bad getAttrOr call

This commit is contained in:
do butterflies cry? 2026-02-08 20:25:04 +10:00
parent e28d06e346
commit a538a7f9bc

View file

@ -143,7 +143,7 @@
};
in {
mkNexus = root: outputs': let
autogen = mkNexus' root <| getAttrOr {} "nexus" outputs';
autogen = mkNexus' root <| getAttrOr "nexus" {} outputs';
outputs = removeAttrs outputs' ["nexus"];
in
autogen // outputs; # XXX: TODO: replace this with a deep merge