nixpkgs/nixos/tests/web-apps/phylactery.nix
Wolfgang Walther 90e7159c55
treewide: remove unused rec
Auto-fix by nixf-diagnose.
2025-10-05 10:49:12 +02:00

24 lines
431 B
Nix

{ pkgs, lib, ... }:
{
name = "phylactery";
nodes.machine =
{ ... }:
{
services.phylactery = {
enable = true;
port = 8080;
library = "/tmp";
};
};
testScript = ''
start_all()
machine.wait_for_unit('phylactery')
machine.wait_for_open_port(8080)
machine.wait_until_succeeds('curl localhost:8080')
'';
meta.maintainers = with lib.maintainers; [ McSinyx ];
}