repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
wchisp: remove overuse of with lib (#357239)
[NixPkgs.git]
/
nixos
/
tests
/
simple.nix
blob
afd49d481a65d54aa5094be587b47b90f5695b30
1
import ./make-test-python.nix ({ pkgs, ...} : {
2
name = "simple";
3
meta = with pkgs.lib.maintainers; {
4
maintainers = [ ];
5
};
6
7
nodes.machine = { ... }: {
8
imports = [ ../modules/profiles/minimal.nix ];
9
};
10
11
testScript =
12
''
13
start_all()
14
machine.wait_for_unit("multi-user.target")
15
machine.shutdown()
16
'';
17
})