diff options
| author | toufic ar <contact@toufy.me> | 2026-05-14 00:52:06 +0300 |
|---|---|---|
| committer | toufic ar <contact@toufy.me> | 2026-05-14 00:52:06 +0300 |
| commit | 3f1ca7182b7d94f67e950efb9732e8fbc24ef767 (patch) | |
| tree | 6be9759c0590657ed191f9236453b6cbba9e5d30 | |
| parent | 1c720f3287513f9c0d180469009ad21bfc677415 (diff) | |
| download | makeshiftci-3f1ca7182b7d94f67e950efb9732e8fbc24ef767.tar.gz makeshiftci-3f1ca7182b7d94f67e950efb9732e8fbc24ef767.zip | |
who needs sane string interpolation anyways?
| -rw-r--r-- | flake.nix | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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()'"; }; }; |
