From 81dd33e4c44c3ad507628bce18a0015b8e3fff83 Mon Sep 17 00:00:00 2001 From: Kevin Cox Date: Sat, 24 Jan 2026 13:04:41 -0500 Subject: [PATCH] nixos/gotenberg: Actually respect the `bindIP` setting AFAICT this setting was never respected, resulting in gotenberg binding to all IPs which is very unfortunate. --- nixos/modules/services/misc/gotenberg.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/modules/services/misc/gotenberg.nix b/nixos/modules/services/misc/gotenberg.nix index b2515f4f2af9..eb924966b4b2 100644 --- a/nixos/modules/services/misc/gotenberg.nix +++ b/nixos/modules/services/misc/gotenberg.nix @@ -8,6 +8,7 @@ let cfg = config.services.gotenberg; args = [ + "--api-bind-ip=${cfg.bindIP}" "--api-port=${toString cfg.port}" "--api-timeout=${cfg.timeout}" "--api-root-path=${cfg.rootPath}"