From 463f5dd9d801b8ca8c1c23879d5bf1e147345448 Mon Sep 17 00:00:00 2001 From: niten Date: Fri, 6 Jan 2023 15:50:48 -0800 Subject: [PATCH] Wrap concatString in brackets. --- objectifier-module.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/objectifier-module.nix b/objectifier-module.nix index c1d18df..6db85c6 100644 --- a/objectifier-module.nix +++ b/objectifier-module.nix @@ -76,14 +76,14 @@ in { ExecStart = let bindClause = map (addr: "--bind ${addr}:${cfg.port}") cfg.listen-addresses; - in concatStringsSep " " [ + in (concatStringsSep " " [ "gunicorn" bindClause "--workers ${cfg.workers}" "-k uvicorn.workers.UvicornWorker" "objectifier:app" "--pid /run/objectifier.pid" - ]; + ]); }; }; };