29d84af677
Instead use $NIX_PATH. NIXOS_CONFIG is still supported. svn path=/nixos/trunk/; revision=32739
10 lines
204 B
Nix
10 lines
204 B
Nix
{ system ? builtins.currentSystem
|
|
, networkExpr
|
|
}:
|
|
|
|
let nodes = import networkExpr; in
|
|
|
|
with import ../../../../lib/testing.nix { inherit system; };
|
|
|
|
(complete { inherit nodes; testScript = ""; }).driver
|