nixpkgs/nixos/tests/lidarr.nix
Wolfgang Walther c283f32d29
treewide: remove unused with
Auto-fixed by nixf-diagnose.
2025-10-05 10:50:41 +02:00

21 lines
333 B
Nix

{ lib, ... }:
{
name = "lidarr";
meta.maintainers = [ ];
nodes.machine =
{ pkgs, ... }:
{
services.lidarr.enable = true;
};
testScript = ''
start_all()
machine.wait_for_unit("lidarr.service")
machine.wait_for_open_port(8686)
machine.succeed("curl --fail http://localhost:8686/")
'';
}