51d66f647a
svn path=/nixos/trunk/; revision=25591
14 lines
306 B
Nix
14 lines
306 B
Nix
{ nixos
|
|
, nixpkgs
|
|
, services ? "/etc/nixos/services"
|
|
, system ? builtins.currentSystem
|
|
, networkExpr
|
|
, useBackdoor ? false
|
|
}:
|
|
|
|
let nodes = import networkExpr;
|
|
in
|
|
with import "${nixos}/lib/testing.nix" { inherit nixpkgs services system useBackdoor; };
|
|
|
|
(complete { inherit nodes; testScript = ""; }).driver
|