fish: Remove .cargo from $PATH

Rust programs are easy enough to install The Nix Way so there's no real
reason to put .cargo in $PATH, especially when programs that have
dependencies like openssl won't work this way.
This commit is contained in:
Donovan Glover 2024-05-12 10:48:44 -04:00
parent 2bd7a0cef9
commit ff2caf7354
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -7,7 +7,7 @@
shellInit = /* fish */ ''
set -U fish_greeting ""
export PATH="$HOME/.cargo/bin:$HOME/.npm-packages/bin:$HOME/.local/bin:$PATH"
export PATH="$HOME/.npm-packages/bin:$HOME/.local/bin:$PATH"
export NODE_PATH="$HOME/.npm-packages/lib/node_modules"
export SSH_AUTH_SOCK="$XDG_RUNTIME_DIR/ssh-agent.socket"
export TERMCMD="kitty --single-instance"