about summary refs log tree commit diff
path: root/nixos/tests/simple.nix
blob: e21b919cdf8065af1cd0c350ec84b85e848fe9bb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
import ./make-test.nix {

  machine = { config, pkgs, ... }: { };

  testScript =
    ''
      startAll;
      $machine->waitForUnit("multi-user.target");
      $machine->shutdown;
    '';
}