mirror of
https://github.com/harivansh-afk/nix.git
synced 2026-04-16 23:02:03 +00:00
final
This commit is contained in:
parent
f01ee2d84b
commit
a29affb397
3 changed files with 24 additions and 15 deletions
31
home/zsh.nix
31
home/zsh.nix
|
|
@ -77,26 +77,29 @@
|
|||
source ~/.secrets
|
||||
fi
|
||||
|
||||
export PATH="$HOME/.local/bin:$PATH"
|
||||
export PATH="${pkgs.postgresql_17}/bin:$PATH"
|
||||
export PATH="$HOME/.opencode/bin:$PATH"
|
||||
|
||||
eval "$(zoxide init zsh)"
|
||||
|
||||
[ -s "$HOME/.bun/_bun" ] && source "$HOME/.bun/_bun"
|
||||
|
||||
export PATH="$HOME/.antigravity/antigravity/bin:$PATH"
|
||||
|
||||
export BUN_INSTALL="$HOME/.bun"
|
||||
export PATH="$BUN_INSTALL/bin:$PATH"
|
||||
|
||||
export PNPM_HOME="$HOME/Library/pnpm"
|
||||
case ":$PATH:" in
|
||||
*":$PNPM_HOME:"*) ;;
|
||||
*) export PATH="$PNPM_HOME:$PATH" ;;
|
||||
esac
|
||||
|
||||
export PATH="$HOME/.amp/bin:$PATH"
|
||||
typeset -U path PATH
|
||||
path=(
|
||||
"$HOME/.amp/bin"
|
||||
"$PNPM_HOME"
|
||||
"$BUN_INSTALL/bin"
|
||||
"$HOME/.antigravity/antigravity/bin"
|
||||
"$HOME/.opencode/bin"
|
||||
"${pkgs.postgresql_17}/bin"
|
||||
"$HOME/.local/bin"
|
||||
"$HOME/.nix-profile/bin"
|
||||
"/etc/profiles/per-user/${config.home.username}/bin"
|
||||
"/run/current-system/sw/bin"
|
||||
"/nix/var/nix/profiles/default/bin"
|
||||
"/opt/homebrew/bin"
|
||||
"/opt/homebrew/sbin"
|
||||
$path
|
||||
)
|
||||
|
||||
unalias ga 2>/dev/null
|
||||
ga() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue