chore: baserow update

This commit is contained in:
m3tm3re
2026-02-20 16:07:36 +01:00
parent 6743043035
commit f4321fced4
5 changed files with 15 additions and 2 deletions

View File

@@ -0,0 +1,11 @@
{lib, ...}: let
serviceName = "gotenberg";
portUtils = import ../../../lib/port-utils.nix {inherit lib;};
servicePort = portUtils.getPort serviceName "AZ-CLD-1";
in {
services.gotenberg = {
enable = true;
port = servicePort;
bindIP = "127.0.0.1";
};
}