From ff397d7d8c3d765a6cc4a6befd23c850d298cebc Mon Sep 17 00:00:00 2001 From: ashisgreat22 Date: Tue, 17 Mar 2026 21:15:11 +0100 Subject: [PATCH] Add bash to PATH for shell scripts --- modules/openclaw.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/openclaw.nix b/modules/openclaw.nix index 18449b8..c469086 100644 --- a/modules/openclaw.nix +++ b/modules/openclaw.nix @@ -86,7 +86,7 @@ in "OPENCLAW_CONFIG_DIR=${configDir}" "OPENCLAW_DATA_DIR=${dataDir}" "OPENCLAW_WORKSPACE_DIR=${workspaceDir}" - "PATH=${pkgs.nodejs_22}/bin:${pkgs.git}/bin:${pkgs.coreutils}/bin" + "PATH=${pkgs.nodejs_22}/bin:${pkgs.git}/bin:${pkgs.bash}/bin:${pkgs.coreutils}/bin" ]; EnvironmentFile = lib.mkIf (cfg.environmentFile != null) cfg.environmentFile;