Get envsubst to replace only necessary variables

This commit is contained in:
Raphaël Numbus
2026-01-09 16:28:19 +01:00
parent 9d003f2cbe
commit e26ed3eb33
2 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -21,12 +21,12 @@ in
smtpServer = lib.mkOption {
description = "The SMTP server address";
type = lib.types.str;
default = "$SENDER_MAIL_DOMAIN";
default = "$SENDER_EMAIL_DOMAIN";
};
smtpUsername = lib.mkOption {
description = "The SMTP username";
type = lib.types.str;
default = "$SENDER_MAIL_ADDRESS";
default = "$SENDER_EMAIL_ADDRESS";
};
smtpPasswordPath = lib.mkOption {
description = "Path to the secret containing SMTP password";