summaryrefslogtreecommitdiffstats
path: root/nixos/tests/simple-vm.nix
blob: 51fe6b596d29d09a2179102fa4ac300b4293eb9e (plain)
1
2
3
4
5
6
7
8
9
10
11
{
  name = "simple-vm";

  nodes.machine = { };

  testScript = ''
    start_all()
    machine.wait_for_unit("multi-user.target")
    machine.shutdown()
  '';
}