feat: use zsh package directly instead of wrapper

This commit is contained in:
Guz
2025-08-24 14:32:33 -03:00
parent 23cd91be37
commit 7b06c1429a

View File

@@ -160,8 +160,11 @@ in {
## ZSH (Default shell)
programs.zsh = lib.mkIf cfg.zsh.enable {
enable = true;
package = config._devkit.packages.zsh;
# package = pkgs.zsh;
# package = config._devkit.packages.zsh;
package = pkgs.zsh;
autosuggestion.enable = true;
enableCompletion = true;
syntaxHighlighting.enable = true;
};
};
}