From a538a7f9bc95c8dd11958ebb7777e01890efa489 Mon Sep 17 00:00:00 2001 From: _cry64 Date: Sun, 8 Feb 2026 20:25:04 +1000 Subject: [PATCH] fix bad getAttrOr call --- cerulean/nexus/nexus.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cerulean/nexus/nexus.nix b/cerulean/nexus/nexus.nix index 9f1f81c..dc153d5 100644 --- a/cerulean/nexus/nexus.nix +++ b/cerulean/nexus/nexus.nix @@ -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