dotfiles/.bash_login
Andrei Jiroh Halili a41e28d091
General configuration changes hellscape
Signed-off-by: Andrei Jiroh Halili <ajhalili2006@andreijiroh.eu.org>
2023-09-03 22:53:26 +08:00

20 lines
601 B
Bash

#!/usr/bin/env bash
export HOST_SPECIFIC_BASHRC_PATH="$HOME/.config/$HOSTNAME.bashrc"
# Stage 0: Source dotenv stuff from homedir
source "$HOME/.env"
if [[ -f "$HOME/.env.local" ]]; then
source "$HOME/.env.local"
LOCAL_DOTENV_LOADED=true
fi
# Stage 1: Source the ~/.profile
source "$HOME/.profile"
# Added by Toolbox App
export PATH="$PATH:/home/ajhalili2006/.local/share/JetBrains/Toolbox/scripts"
_byobu_sourced=1 . /usr/bin/byobu-launch 2>/dev/null || true
if [ -e "$HOME/.nix-profile/etc/profile.d/nix.sh" ]; then . "$HOME/.nix-profile/etc/profile.d/nix.sh"; fi # added by Nix installer