1 import ./make-test-python.nix ({ lib, ... }: {
2 name = "homepage-dashboard";
3 meta.maintainers = with lib.maintainers; [ jnsgruk ];
5 nodes.machine = { pkgs, ... }: {
6 services.homepage-dashboard.enable = true;
10 machine.wait_for_unit("homepage-dashboard.service")
11 machine.wait_for_open_port(8082)
12 machine.succeed("curl --fail http://localhost:8082/")