This commit is contained in:
Raphaël Numbus
2026-01-07 21:05:32 +01:00
parent 3f722ca712
commit e26499e248
3 changed files with 9 additions and 9 deletions
+2 -2
View File
@@ -21,12 +21,12 @@ in
smtpServer = lib.mkOption {
description = "The SMTP server address";
type = lib.types.str;
default = "SENDER_EMAIL_DOMAIN";
default = "SENDER_MAIL_DOMAIN";
};
smtpUsername = lib.mkOption {
description = "The SMTP username";
type = lib.types.str;
default = "SENDER_EMAIL_ADDRESS";
default = "SENDER_MAIL_ADDRESS";
};
smtpPasswordPath = lib.mkOption {
description = "Path to the secret containing SMTP password";
+1 -1
View File
@@ -39,7 +39,7 @@ TRAEFIK_NETWORKS
- traefik.http.routers.traefik-https.tls.certresolver=cloudflare
restart: always
networks:
TRAEFIK_NETWORKS_REF
TRAEFIK_REF_NETWORKS
'';
systemd.services.traefik = {