From 6638484e29eeb06e4a7151551de2c0c8212218ce Mon Sep 17 00:00:00 2001 From: Jeremy Kaplan Date: Mon, 16 Sep 2024 01:16:25 -0400 Subject: [PATCH] Add homebrew paths to profile --- etc/profile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/etc/profile b/etc/profile index 979c5eb..2baf0bc 100644 --- a/etc/profile +++ b/etc/profile @@ -21,12 +21,11 @@ path_if() { source_if "${HOME}/.nix-profile/etc/profile.d/nix.sh" -if has brew; then - source_if "$(brew --prefix asdf)/libexec/asdf.sh" -fi - path_if "$HOME/bin" path_if "$HOME/.local/bin" +path_if /usr/local/bin +path_if /opt/homebrew/bin +path_if /opt/homebrew/sbin unset -f source_if unset -f path_if