mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-01 10:34:16 +00:00
c7a5960101
svn path=/nixos/trunk/; revision=25592
14 lines
294 B
Nix
14 lines
294 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; };
|
|
|
|
(complete { inherit nodes; testScript = ""; }).driver
|