nixpkgs-immich/nixos/tests/qboot.nix
2024-09-17 10:23:40 -06:00

14 lines
240 B
Nix

import ./make-test-python.nix ({ pkgs, ...} : {
name = "qboot";
nodes.machine = { ... }: {
virtualisation.bios = pkgs.qboot;
};
testScript =
''
start_all()
machine.wait_for_unit("multi-user.target")
'';
})