From 9153ced99a3b460b86622aa8cd38e38302a9c824 Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Thu, 3 Aug 2023 15:23:06 -0400 Subject: [PATCH] shells/zsh: don't hardcode history path --- users/profiles/shells/zsh.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/users/profiles/shells/zsh.nix b/users/profiles/shells/zsh.nix index e30f490..c3808e0 100644 --- a/users/profiles/shells/zsh.nix +++ b/users/profiles/shells/zsh.nix @@ -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;