From e91a7e9621c526e5d2bba0abf203d8bd6258ec44 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20Schr=C3=B6ter?= Date: Sun, 12 Dec 2021 16:04:58 +0100 Subject: [PATCH] fix(miniflux): fix port stringification --- services/miniflux.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/services/miniflux.nix b/services/miniflux.nix index 91f8d98..cd5f8ab 100644 --- a/services/miniflux.nix +++ b/services/miniflux.nix @@ -5,14 +5,14 @@ in { services.miniflux = { enable = true; adminCredentialsFile = "/etc/nixos/secrets/miniflux"; - config = { LISTEN_ADDR = "localhost:${port}"; }; + config = { LISTEN_ADDR = "localhost:${toString port}"; }; }; services.nginx = { virtualHosts."news.felschr.com" = { enableACME = true; forceSSL = true; - locations."/".proxyPass = "http://localhost:${port}"; + locations."/".proxyPass = "http://localhost:${toString port}"; }; }; }