From 5061223ddcd8d9ca7691675c970496b3fdf33f6b Mon Sep 17 00:00:00 2001 From: Jonas Heinrich Date: Tue, 24 Feb 2026 17:20:48 +0100 Subject: [PATCH] nixos/tests/lauti: switch to lauti module --- nixos/tests/lauti.nix | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/nixos/tests/lauti.nix b/nixos/tests/lauti.nix index 11e1158456f1..6e0dc2d1de67 100644 --- a/nixos/tests/lauti.nix +++ b/nixos/tests/lauti.nix @@ -5,20 +5,20 @@ }: { - name = "eintopf"; + name = "lauti"; meta.maintainers = with lib.maintainers; [ onny ]; nodes = { - eintopf = { - services.eintopf.enable = true; + lauti = { + services.lauti.enable = true; }; }; testScript = '' - eintopf.start - eintopf.wait_for_unit("eintopf.service") - eintopf.wait_for_open_port(3333) - eintopf.succeed("curl -sSfL http://eintopf:3333 | grep 'No events available'") + lauti.start + lauti.wait_for_unit("lauti.service") + lauti.wait_for_open_port(3333) + lauti.succeed("curl -sSfL http://lauti:3333 | grep 'No events available'") ''; }