blob: 29d999be58e5bcaaedcde5e3b2543c6b88b7d6c9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import ./make-test-python.nix ({ pkgs, ...} : {
name = "qboot";
nodes.machine = { ... }: {
virtualisation.bios = pkgs.qboot;
};
testScript =
''
start_all()
machine.wait_for_unit("multi-user.target")
'';
})
|