mirror of
https://mau.dev/andreijiroh-dev/dotfiles.git
synced 2025-01-19 15:06:39 +00:00
709c0d8c36
Signed-off-by: Andrei Jiroh Halili <ajhalili2006@andreijiroh.eu.org>
9 lines
No EOL
254 B
Bash
9 lines
No EOL
254 B
Bash
#!/usr/bin/env bash
|
|
|
|
if [[ -d "$HOME/.nix-profile/etc/profile.d/nix.sh" ]] && [[ $FF_DISABLE_NIXPKGS != "true" ]]; then
|
|
source "${HOME}/.nix-profile/etc/profile.d/nix.sh"
|
|
fi
|
|
|
|
if command -v devbox >> /dev/null; then
|
|
eval "$(devbox global shellenv)"
|
|
fi |