From 50b99b008cfa499b89fc5c1e337f812df69dd3e3 Mon Sep 17 00:00:00 2001 From: ashisgreat22 Date: Tue, 17 Mar 2026 21:17:12 +0100 Subject: [PATCH] Run openclaw gateway in foreground mode --- modules/openclaw.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/openclaw.nix b/modules/openclaw.nix index c469086..7e23052 100644 --- a/modules/openclaw.nix +++ b/modules/openclaw.nix @@ -96,7 +96,7 @@ in "${pkgs.bash}/bin/bash -c 'cp -n /etc/openclaw/openclaw.json ${configDir}/ || true'" ]; - ExecStart = "${pkgs.nodejs_22}/bin/npx openclaw gateway start --port ${toString cfg.port}"; + ExecStart = "${pkgs.nodejs_22}/bin/npx openclaw gateway --port ${toString cfg.port}"; Restart = "on-failure"; RestartSec = "10s";