From d530911c39c0ee7f53171e0a5639eaf8627f1651 Mon Sep 17 00:00:00 2001 From: RGBCube Date: Tue, 9 Jan 2024 00:09:18 +0300 Subject: [PATCH] Fix number can't be coerced to string --- flake.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index 5404278..7f992de 100644 --- a/flake.nix +++ b/flake.nix @@ -170,8 +170,8 @@ serviceConfig = let arguments = [ - "--http-port" cfg.httpPort - "--https-port" cfg.httpsPort + "--http-port" (toString cfg.httpPort) + "--https-port" (toString cfg.httpsPort) "--log-level" cfg.logLevel ] ++ (optionals (cfg.certificate != null) [ "--certificate" cfg.certificate