From 85b0107b596a069d1ced476c6ef7165c17e11021 Mon Sep 17 00:00:00 2001 From: Zhaofeng Li Date: Wed, 16 Feb 2022 00:54:53 -0800 Subject: [PATCH] eval.nix: Skip recursive type checking for `nodes` in `colmena eval` as well This matches the behavior of the `nodes` argument in NixOS modules. --- src/nix/hive/eval.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/nix/hive/eval.nix b/src/nix/hive/eval.nix index 2c81546..caf1cb1 100644 --- a/src/nix/hive/eval.nix +++ b/src/nix/hive/eval.nix @@ -521,7 +521,8 @@ let evalSelectedDrvPaths = names: lib.mapAttrs (k: v: v.drvPath) (evalSelected names); introspect = function: function { - inherit pkgs lib nodes; + inherit pkgs lib; + nodes = uncheckedNodes; }; in { inherit