nixos-build-vms: fix eval

Previously I got the following error message:

```
error: opening file '/home/ma27/Projects/nixpkgs/nixos/modules/installer/default.nix': No such file or directory
```

Probably related to 6c68fbd4e1.
This commit is contained in:
Maximilian Bosch 2018-11-23 13:43:47 +01:00
parent 5a73ff0419
commit b36fa8ef91
No known key found for this signature in database
GPG Key ID: 091DBF4D1FC46B8E

View File

@ -7,7 +7,7 @@ let nodes = import networkExpr; in
with import ../../../../lib/testing.nix {
inherit system;
pkgs = import ../.. { inherit system config; };
pkgs = import ../../../../.. { inherit system config; };
};
(makeTest { inherit nodes; testScript = ""; }).driver