1
0
mirror of https://tildegit.org/ben/dotfiles.git synced 2025-03-14 10:20:43 +00:00
dotfiles/bash/.bash_profile

8 lines
277 B
Bash
Raw Normal View History

2018-07-22 15:39:58 -04:00
[[ -s "$HOME/.profile" ]] && source "$HOME/.profile" # Load the default .profile
export PATH="$HOME/.cargo/bin:$PATH"
if [ -e /home/ben/.nix-profile/etc/profile.d/nix.sh ]; then . /home/ben/.nix-profile/etc/profile.d/nix.sh; fi # added by Nix installer
2024-09-13 01:33:52 -04:00
. "$HOME/.cargo/env"