From 88b387f90d45f8e5a51a078ae12731c3d5424c9d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Tue, 26 Aug 2025 16:20:58 +0200 Subject: [PATCH] nixos/tests/gotenberg: auto start chromium and libreoffice to detect failures starting them without having to convert a document --- nixos/tests/gotenberg.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nixos/tests/gotenberg.nix b/nixos/tests/gotenberg.nix index c640657ea872..05b326996aa6 100644 --- a/nixos/tests/gotenberg.nix +++ b/nixos/tests/gotenberg.nix @@ -7,6 +7,9 @@ nodes.machine = { services.gotenberg = { enable = true; + # fail the service if any of those does not come up + chromium.autoStart = true; + libreoffice.autoStart = true; }; };