Auto-sync from catchthesethighs

This commit is contained in:
adlee-was-taken
2025-12-19 19:44:20 -05:00
parent f5350406ad
commit b13c84d9d7
2 changed files with 12 additions and 1 deletions

View File

@@ -284,6 +284,17 @@ _deferred_load() {
if [[ -f "$_dotfiles_dir/vault/secrets.enc" ]] && [[ -x "$vault_script" ]]; then
eval "$("$vault_script" shell 2>/dev/null)" || true
fi
# Load dotfiles.conf env variables.
DOTFILES_CONF="$HOME/.dotfiles/dotfiles.conf"
if [[ -f "$DOTFILES_CONF" ]]; then
source $DOTFILES_CONF
else
DOTFILES_DIR="$HOME/.dotfiles"
DOTFILES_BRANCH="main"
fi
}
# ============================================================================