nixpkgs/modules/installer/tools/nixos-build-vms/build-vms.nix
2011-01-17 16:15:59 +00:00

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