From 45832980fdb7a409d79a7e74a21252532993029c Mon Sep 17 00:00:00 2001 From: greg-compass Date: Mon, 12 Jun 2023 11:09:10 -0500 Subject: [PATCH] Append /usr/local/bin/ to PATH --- home/xonsh_header.xsh | 1 + 1 file changed, 1 insertion(+) diff --git a/home/xonsh_header.xsh b/home/xonsh_header.xsh index 1c332a3..cb378ff 100644 --- a/home/xonsh_header.xsh +++ b/home/xonsh_header.xsh @@ -25,3 +25,4 @@ if platform == "darwin": $PATH.append(Path("/opt/homebrew/bin/")) $PATH.append(Path("/run/current-system/sw/bin")) $PATH.append(Path("/nix/var/nix/profiles/default/bin")) + $PATH.append(Path("/usr/local/bin"))