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