mirror of
https://github.com/lloeki/dotfiles.git
synced 2025-12-06 07:24:39 +01:00
7 lines
273 B
Bash
7 lines
273 B
Bash
if [[ -e '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' ]]; then
|
|
. '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh'
|
|
elif [[ -e "${HOME}/.nix-profile/etc/profile.d/nix.sh" ]]; then
|
|
. "${HOME}/.nix-profile/etc/profile.d/nix.sh"
|
|
fi
|
|
|
|
# vim: ft=bash
|