2025-07-12 12:37:52 +03:00

19 lines
335 B
Nix

{
programs.zsh = {
enable = true;
enableCompletion = true;
enableVteIntegration = true;
autocd = true;
autosuggestion = {
enable = true;
};
syntaxHighlighting = {
enable = true;
};
envExtra = ''
# Add asdf shims to PATH
export PATH="$HOME/.asdf/shims:$PATH"
'';
};
}