96b769c979
svn path=/nixos/trunk/; revision=25601
12 lines
272 B
Nix
12 lines
272 B
Nix
{ nixos
|
|
, nixpkgs
|
|
, services ? "/etc/nixos/services"
|
|
, system ? builtins.currentSystem
|
|
, networkExpr
|
|
}:
|
|
|
|
let nodes = import networkExpr;
|
|
in
|
|
with import "${nixos}/lib/testing.nix" { inherit nixpkgs services system; };
|
|
|
|
(complete { inherit nodes; testScript = ""; }).driver
|