aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--flake.nix6
1 files 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()'";
};
};