diff --git a/modules2/zsh/dot-dir.nix b/modules2/zsh/dot-dir.nix index 5707e785..83e5f2e1 100644 --- a/modules2/zsh/dot-dir.nix +++ b/modules2/zsh/dot-dir.nix @@ -1,5 +1,7 @@ { - flake.modules.homeManager.base = { - programs.zsh.dotDir = ".config/zsh"; - }; + flake.modules.homeManager.base = + { config, ... }: + { + programs.zsh.dotDir = "${config.xdg.configHome}/zsh"; + }; }