From 3f1ca7182b7d94f67e950efb9732e8fbc24ef767 Mon Sep 17 00:00:00 2001 From: toufic ar Date: Thu, 14 May 2026 00:52:06 +0300 Subject: who needs sane string interpolation anyways? --- flake.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/flake.nix b/flake.nix index 1ec056d..dae9173 100644 --- a/flake.nix +++ b/flake.nix @@ -127,9 +127,9 @@ in { ExecStart = "${webui}/bin/gunicorn " - + "-w ${cfg.webUI.workers} " - + "--timeout ${cfg.webUI.timeout} " - + "-b 127.0.0.1:${cfg.webUI.port} " + + "-w ${builtins.toString cfg.webUI.workers} " + + "--timeout ${builtins.toString cfg.webUI.timeout} " + + "-b 127.0.0.1:${builtins.toString cfg.webUI.port} " + "'web:create_app()'"; }; }; -- cgit v1.2.3