From cd801d325ba6b83bcd088d66c3567790fce62f4f Mon Sep 17 00:00:00 2001 From: ashisgreat22 Date: Tue, 17 Mar 2026 21:12:18 +0100 Subject: [PATCH] Add git to OpenClaw service PATH for npm deps --- modules/openclaw.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/openclaw.nix b/modules/openclaw.nix index 6c67caa..646c5c4 100644 --- a/modules/openclaw.nix +++ b/modules/openclaw.nix @@ -96,6 +96,7 @@ in ]; ExecStart = "${pkgs.nodejs_22}/bin/npx openclaw gateway start --port ${toString cfg.port}"; + Path = [ pkgs.nodejs_22 pkgs.git pkgs.coreutils ]; Restart = "on-failure"; RestartSec = "10s";