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