mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-26 07:34:11 +00:00
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
|