Fallback to bundled zshrc

This commit is contained in:
2026-02-12 06:07:00 +00:00
parent 6259127661
commit dde01afb7f

View File

@@ -15,7 +15,12 @@
. /nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh
fi
. ~/dotfiles/migrated/.zshrc
if [ -r ~/dotfiles/migrated/.zshrc ]; then
. ~/dotfiles/migrated/.zshrc
else
# If no custom override is available, use the one bundled with flake.
. ${../migrated/.zshrc}
fi
'';
};