From 052423a7e94cbc3039d96b835f45f0c0fea791d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Tue, 25 Mar 2025 20:04:20 +0100 Subject: [PATCH] nixos/gancio: add sendmail to path --- nixos/modules/services/web-apps/gancio.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/nixos/modules/services/web-apps/gancio.nix b/nixos/modules/services/web-apps/gancio.nix index e99b689012a6..230e93737fdb 100644 --- a/nixos/modules/services/web-apps/gancio.nix +++ b/nixos/modules/services/web-apps/gancio.nix @@ -219,6 +219,11 @@ in NODE_ENV = "production"; }; + path = [ + # required for sendmail + "/run/wrappers" + ]; + preStart = '' # We need this so the gancio executable run by the user finds the right settings. ln -sf ${configFile} config.json