From 56a7fd96aa0948a9d2b6921f93a3d2da003a07be Mon Sep 17 00:00:00 2001 From: niten Date: Thu, 25 Jan 2024 11:44:53 -0800 Subject: [PATCH] ...And toString the port --- lemmy-container.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lemmy-container.nix b/lemmy-container.nix index 3f6d9e5..5cb5a10 100644 --- a/lemmy-container.nix +++ b/lemmy-container.nix @@ -98,7 +98,7 @@ in { server.package = cfg.server-package; settings = { email = { - smtp_server = "${cfg.smtp.host}:${cfg.smtp.port}"; + smtp_server = "${cfg.smtp.host}:${toString cfg.smtp.port}"; smtp_from_address = "noreply@${cfg.hostname}"; }; hostname = cfg.hostname;