From 0c42a480c65fdd5ee37b40cd931fb4dd73668620 Mon Sep 17 00:00:00 2001 From: Kris Date: Wed, 25 Feb 2026 22:07:15 +0200 Subject: [PATCH] openclaw: fix installPhase append newline for brave endpoint patch --- hosts/server/slop/openclaw.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hosts/server/slop/openclaw.nix b/hosts/server/slop/openclaw.nix index d315878..9ab8f63 100644 --- a/hosts/server/slop/openclaw.nix +++ b/hosts/server/slop/openclaw.nix @@ -6,7 +6,7 @@ let openclawPatched = inputs.openclaw.packages.${pkgs.system}.openclaw-gateway.overrideAttrs (old: { - installPhase = old.installPhase + '' + installPhase = old.installPhase + "\n" + '' # Point Brave web-search endpoint to local shim. # NOTE: upstream installPhase script does not run postInstall hooks, # so patch directly at the end of installPhase.