aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortoufic ar <contact@toufy.me>2026-05-14 00:52:06 +0300
committertoufic ar <contact@toufy.me>2026-05-14 00:52:06 +0300
commit3f1ca7182b7d94f67e950efb9732e8fbc24ef767 (patch)
tree6be9759c0590657ed191f9236453b6cbba9e5d30
parent1c720f3287513f9c0d180469009ad21bfc677415 (diff)
downloadmakeshiftci-3f1ca7182b7d94f67e950efb9732e8fbc24ef767.tar.gz
makeshiftci-3f1ca7182b7d94f67e950efb9732e8fbc24ef767.zip
who needs sane string interpolation anyways?
-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()'";
};
};