From f01cda07ed8eb99a7ac0430650726921536ae379 Mon Sep 17 00:00:00 2001 From: Crosson David Date: Sat, 23 Nov 2024 00:32:00 +0100 Subject: [PATCH] Fix int to string conversion --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 844fa56..8dfc29e 100644 --- a/flake.nix +++ b/flake.nix @@ -73,7 +73,7 @@ Type = "simple"; }; environment = { - WEB_ECHO_LISTEN_PORT = "${config.services.web-echo.port}"; + WEB_ECHO_LISTEN_PORT = (toString config.services.web-echo.port); WEB_ECHO_PREFIX = config.services.web-echo.prefix; }; serviceConfig = {