1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-18 15:39:46 +03:00
nixpkgs/nixos/tests/qboot.nix

14 lines
240 B
Nix
Raw Normal View History

import ./make-test-python.nix ({ pkgs, ...} : {
name = "qboot";
2022-03-21 00:15:30 +01:00
nodes.machine = { ... }: {
virtualisation.bios = pkgs.qboot;
};
testScript =
''
start_all()
machine.wait_for_unit("multi-user.target")
'';
})