{ config, lib, pkgs, ... }: pkgs.testers.runNixOSTest { name = "test of tests"; nodes.machine = { pkgs, ... }: { }; testScript = '' start_all() machine.wait_for_unit("multi-user.target") machine.succeed("echo hello!") ''; }