From f75ac845443b4ff8101944a5a02c9c335bbd7914 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Numbus?= Date: Sat, 10 Jan 2026 08:30:19 +0100 Subject: [PATCH] sed typo and forgot to remove $ in activation --- templates/nix-config/misc/activation.nix | 2 +- templates/nix-config/misc/mail.nix | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/templates/nix-config/misc/activation.nix b/templates/nix-config/misc/activation.nix index 5a9b519..4eca75d 100644 --- a/templates/nix-config/misc/activation.nix +++ b/templates/nix-config/misc/activation.nix @@ -43,7 +43,7 @@ exit 0 fi -$PODMAN_NETWORKS +PODMAN_NETWORKS ${pkgs.coreutils}/bin/mkdir -p /home/numbus-admin/.numbus-server/ ${pkgs.coreutils}/bin/touch /home/numbus-admin/.numbus-server/networked.true diff --git a/templates/nix-config/misc/mail.nix b/templates/nix-config/misc/mail.nix index 46f7357..5e7397d 100644 --- a/templates/nix-config/misc/mail.nix +++ b/templates/nix-config/misc/mail.nix @@ -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";