about summary refs log tree commit diff
path: root/nixos/modules/installer/tools/nixos-build-vms/build-vms.nix
blob: 4d6da849f237555031e7d72ba8ecf1ea40a8eeeb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ system ? builtins.currentSystem
, config ? {}
, networkExpr
}:

let nodes = import networkExpr; in

with import ../../../../lib/testing.nix {
  inherit system;
  pkgs = import ../.. { inherit system config; }
};

(makeTest { inherit nodes; testScript = ""; }).driver