nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ pkgs, ... }:
2{
3 name = "simple";
4 meta = with pkgs.lib.maintainers; {
5 maintainers = [ ];
6 };
7
8 nodes.machine =
9 { ... }:
10 {
11 imports = [ ../modules/profiles/minimal.nix ];
12 };
13
14 testScript = ''
15 start_all()
16 machine.wait_for_unit("multi-user.target")
17 machine.shutdown()
18 '';
19}