1{ hostPkgs, lib, ... }:
2{
3 name = "zoom-us";
4
5 nodes.machine =
6 { pkgs, ... }:
7 {
8 imports = [ ./common/x11.nix ];
9 programs.zoom-us.enable = true;
10 };
11
12 testScript = ''
13 machine.succeed("which zoom") # fail early if this is missing
14 machine.wait_for_x()
15 machine.execute("zoom >&2 &")
16 machine.wait_for_window("Zoom Workplace")
17 '';
18}