blob: c74110afebd5ec2e903dcbea150f1a327a54a008 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{ pkgs, ... }:
{
name = "qboot";
nodes.machine =
{ ... }:
{
virtualisation.bios = pkgs.qboot;
};
testScript = ''
start_all()
machine.wait_for_unit("multi-user.target")
'';
}
|