nixos/tests/gotenberg: auto start chromium and libreoffice to detect failures starting them without having to convert a document

This commit is contained in:
Sandro Jäckel 2025-08-26 16:20:58 +02:00
parent 8062f8a4e8
commit 88b387f90d
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5

View file

@ -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;
};
};