From 42c3512fad42e8f74844dea617a491d2730569e3 Mon Sep 17 00:00:00 2001 From: Chris Cochrun Date: Fri, 16 May 2025 07:23:47 -0500 Subject: [PATCH] grrr --- modules/nocodb.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/nocodb.nix b/modules/nocodb.nix index ffd341c..93323f7 100644 --- a/modules/nocodb.nix +++ b/modules/nocodb.nix @@ -10,11 +10,11 @@ with lib; enable = true; environment = { DB_URL="postgres:///nocodb?host=/run/postgresql"; - PORT = 9989; + PORT = "9989"; NC_PUBLIC_URL = "https://${dn}"; NC_SMTP_FROM = "no-reply@mail.tfcconnection.org"; NC_SMTP_HOST = "mail.tfcconnection.org"; - NC_SMTP_PORT = 587; + NC_SMTP_PORT = "587"; NC_SMTP_USERNAME = "no-reply@mail.tfcconnection.org"; }; environmentFile = /nocoenv; @@ -24,7 +24,7 @@ with lib; forceSSL = true; enableACME = true; locations."/" = { - proxyPass = "http://127.0.0.1:${toString config.services.nocodb.environment.PORT}"; + proxyPass = "http://127.0.0.1:${config.services.nocodb.environment.PORT}"; proxyWebsockets = true; }; };