eval.nix: Skip recursive type checking for nodes in colmena eval as well

This matches the behavior of the `nodes` argument in NixOS modules.
This commit is contained in:
Zhaofeng Li 2022-02-16 00:54:53 -08:00
parent 6146aef174
commit 85b0107b59

View file

@ -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