about summary refs log tree commit diff
path: root/nixos/tests/simple.nix
blob: eee13a10133458c65702e22af8ce6df58cff4478 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{ pkgs, ... }:

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

  testScript =
    ''
      startAll;
      $machine->shutdown;
    '';
}