mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-06-05 21:03:40 +00:00
12 lines
161 B
Nix
12 lines
161 B
Nix
{
|
|
name = "simple-vm";
|
|
|
|
nodes.machine = { };
|
|
|
|
testScript = ''
|
|
start_all()
|
|
machine.wait_for_unit("multi-user.target")
|
|
machine.shutdown()
|
|
'';
|
|
}
|