From 7735f61670ad864f01691f5653f5d3ea27df4725 Mon Sep 17 00:00:00 2001 From: _cry64 Date: Thu, 15 Jan 2026 15:30:54 +1000 Subject: [PATCH] fix mapNodes never provided nodes list --- cerulean/flake-config/nexus.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cerulean/flake-config/nexus.nix b/cerulean/flake-config/nexus.nix index 3f1094f..bdc1ba5 100644 --- a/cerulean/flake-config/nexus.nix +++ b/cerulean/flake-config/nexus.nix @@ -24,7 +24,7 @@ ; mkNexus' = config: rec { - nixosConfigurations = mapNodes ( + nixosConfigurations = mapNodes config.nexus.nodes ( nodeName: node: lib.nixosSystem { system = node.system; @@ -40,7 +40,7 @@ } ); - deploy.nodes = mapNodes (nodeName: node: let + deploy.nodes = mapNodes config.nexus.nodes (nodeName: node: let inherit (node.deploy) activationTimeout