From a76ad69eb730bce8c580ea9ec3aa10a3de1a772f Mon Sep 17 00:00:00 2001 From: Michael Bishop Date: Wed, 26 Jun 2024 22:44:27 -0300 Subject: [PATCH] restore the defaults entry in the network file --- data/eval-machines.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/data/eval-machines.nix b/data/eval-machines.nix index 42be12e..6c342e1 100644 --- a/data/eval-machines.nix +++ b/data/eval-machines.nix @@ -13,6 +13,8 @@ let in with lib; let + defaults = network.defaults or {}; + modules = { machineName, nodes, check }: [ # Get the configuration of this machine from each network @@ -20,6 +22,8 @@ let # system can give sensible error messages. { imports = [ network.${machineName} ]; } + defaults + ({ lib, ... }: { key = "deploy-stuff"; imports = [ ./options.nix ];