sed typo and forgot to remove $ in activation

This commit is contained in:
Raphaël Numbus
2026-01-10 08:30:19 +01:00
parent 7ad8ea057b
commit f75ac84544
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -43,7 +43,7 @@
exit 0 exit 0
fi fi
$PODMAN_NETWORKS PODMAN_NETWORKS
${pkgs.coreutils}/bin/mkdir -p /home/numbus-admin/.numbus-server/ ${pkgs.coreutils}/bin/mkdir -p /home/numbus-admin/.numbus-server/
${pkgs.coreutils}/bin/touch /home/numbus-admin/.numbus-server/networked.true ${pkgs.coreutils}/bin/touch /home/numbus-admin/.numbus-server/networked.true
+2 -2
View File
@@ -21,12 +21,12 @@ in
smtpServer = lib.mkOption { smtpServer = lib.mkOption {
description = "The SMTP server address"; description = "The SMTP server address";
type = lib.types.str; type = lib.types.str;
default = "SENDER_EMAIL_DOMAIN"; default = "SENDER_MAIL_DOMAIN";
}; };
smtpUsername = lib.mkOption { smtpUsername = lib.mkOption {
description = "The SMTP username"; description = "The SMTP username";
type = lib.types.str; type = lib.types.str;
default = "SENDER_EMAIL_ADDRESS"; default = "SENDER_MAIL_ADDRESS";
}; };
smtpPasswordPath = lib.mkOption { smtpPasswordPath = lib.mkOption {
description = "Path to the secret containing SMTP password"; description = "Path to the secret containing SMTP password";