diff --git a/Droidnix/generated/system/applications/terminal_shell/zsh.nix b/Droidnix/generated/system/applications/terminal_shell/zsh.nix index fd75c004e..3a5f220a7 100644 --- a/Droidnix/generated/system/applications/terminal_shell/zsh.nix +++ b/Droidnix/generated/system/applications/terminal_shell/zsh.nix @@ -2,14 +2,14 @@ config, pkgs, lib, + user, ... }: { programs.zsh = { enable = true; enableCompletion = true; - #autocd = true; - dotDir = "${config.xdg.configHome}/zsh"; + dotDir = "${config.xdg.configHome}/zsh"; # Remove `config.` prefix oh-my-zsh = { enable = true; theme = ""; @@ -26,5 +26,6 @@ }; autosuggestion.enable = true; syntaxHighlighting.enable = true; + zshoptions = [ "AUTO_CD" ]; }; }