wchisp: remove overuse of with lib (#357239)
[NixPkgs.git] / nixos / tests / simple.nix
blobafd49d481a65d54aa5094be587b47b90f5695b30
1 import ./make-test-python.nix ({ pkgs, ...} : {
2   name = "simple";
3   meta = with pkgs.lib.maintainers; {
4     maintainers = [ ];
5   };
7   nodes.machine = { ... }: {
8     imports = [ ../modules/profiles/minimal.nix ];
9   };
11   testScript =
12     ''
13       start_all()
14       machine.wait_for_unit("multi-user.target")
15       machine.shutdown()
16     '';