shells/zsh: don't hardcode history path

This commit is contained in:
Infinidoge 2023-08-03 15:23:06 -04:00
parent 03d7baa7d6
commit 9153ced99a

View file

@ -28,7 +28,7 @@
dotDir = ".config/zsh";
history.path = "/home/infinidoge/${dotDir}/.zsh_history";
history.path = "$HOME/${dotDir}/.zsh_history";
shellAliases = main.environment.shellAliases // config.home.shellAliases;