at master 355 B view raw
1{ lib, ... }: 2 3{ 4 name = "lidarr"; 5 meta.maintainers = with lib.maintainers; [ ]; 6 7 nodes.machine = 8 { pkgs, ... }: 9 { 10 services.lidarr.enable = true; 11 }; 12 13 testScript = '' 14 start_all() 15 16 machine.wait_for_unit("lidarr.service") 17 machine.wait_for_open_port(8686) 18 machine.succeed("curl --fail http://localhost:8686/") 19 ''; 20}