From faa7872dc72b88dcc9172a26f8bca6a517510a8c Mon Sep 17 00:00:00 2001 From: joygnu Date: Thu, 29 Aug 2024 11:55:25 +0200 Subject: [PATCH] right pahts for zsh config --- home/zsh/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/home/zsh/default.nix b/home/zsh/default.nix index be09a61..41aea74 100644 --- a/home/zsh/default.nix +++ b/home/zsh/default.nix @@ -5,7 +5,7 @@ enableCompletion = true; autosuggestion.enable = true; historySubstringSearch.enable = true; - dotDir = ".config/zsh"; + dotDir = "~/.config/zsh"; initExtra = "PROMPT='%F{green}%~%f '"; shellAliases = { @@ -22,6 +22,6 @@ }; history.size = 1000000; - history.path = ".config/zsh/history"; + history.path = "~/.config/zsh/history"; }; }