From 0cbf189fa5f392107ba17a1c603bd39064248081 Mon Sep 17 00:00:00 2001 From: Ahwx Date: Sun, 27 Jul 2025 15:29:29 +0200 Subject: [PATCH] feat: adds senderEmail as a variable --- variables.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/variables.nix b/variables.nix index 95798b8..9d61168 100644 --- a/variables.nix +++ b/variables.nix @@ -29,5 +29,11 @@ in readOnly = true; description = "My primary email"; }; + senderEmail = mkOption { + default = "notifications@liv.town"; + type = types.str; + readOnly = true; + description = "Emailaddress used to send mails from the system"; + }; }; }