From 2dcff861fec8cc4d59069d144cbe0c1ee6740275 Mon Sep 17 00:00:00 2001 From: Devyn Freet Date: Fri, 10 Jul 2026 23:27:22 -0400 Subject: [PATCH] fix?: changed zsh dotDir path to string with /zsh --- home/shell.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home/shell.nix b/home/shell.nix index 0884e1d..ff9320d 100644 --- a/home/shell.nix +++ b/home/shell.nix @@ -53,7 +53,7 @@ in shellAliases = myAliases; history.size = 10000; setOptions = [ "NO_BEEP" ]; - dotDir = config.xdg.configHome; + dotDir = "${config.xdg.configHome}/zsh"; plugins = [ { name = "vi-mode";