From 2577f6344b85a3aa42aba2ff5a55703d6e754d4d Mon Sep 17 00:00:00 2001 From: Rodrigo Arias Mallo Date: Fri, 9 Jan 2026 17:59:44 +0100 Subject: [PATCH] Fix gitea user to allow sending email In order to send email, the gitea user needs to be in the mail-robot group. Fixes: https://jungle.bsc.es/git/rarias/jungle/issues/220 --- m/tent/gitea.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/m/tent/gitea.nix b/m/tent/gitea.nix index 546ac5f3..5c458306 100644 --- a/m/tent/gitea.nix +++ b/m/tent/gitea.nix @@ -27,4 +27,7 @@ }; }; }; + + # Allow gitea user to send mail + users.users.gitea.extraGroups = [ "mail-robot" ]; }