1{
2 lib,
3 pkgs,
4 ...
5}:
6
7{
8 name = "eintopf";
9 meta.maintainers = with lib.maintainers; [ onny ];
10
11 nodes = {
12 eintopf = {
13 services.eintopf.enable = true;
14 };
15 };
16
17 testScript = ''
18 eintopf.start
19 eintopf.wait_for_unit("eintopf.service")
20 eintopf.wait_for_open_port(3333)
21 eintopf.succeed("curl -sSfL http://eintopf:3333 | grep 'No events available'")
22 '';
23
24}