mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-06-05 21:03:40 +00:00
16 lines
210 B
Nix
16 lines
210 B
Nix
{ pkgs, ... }:
|
|
{
|
|
name = "qboot";
|
|
|
|
nodes.machine =
|
|
{ ... }:
|
|
{
|
|
virtualisation.bios = pkgs.qboot;
|
|
};
|
|
|
|
testScript = ''
|
|
start_all()
|
|
machine.wait_for_unit("multi-user.target")
|
|
'';
|
|
}
|