mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 07:01:54 +00:00
b36fa8ef91
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
.
14 lines
279 B
Nix
14 lines
279 B
Nix
{ 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
|