Files
nixos-config/modules/home/zsh.nix

18 lines
260 B
Nix
Raw Normal View History

2025-09-13 02:38:36 -04:00
{
...
}:
{
programs = {
direnv = {
enable = true;
enableZshIntegration = true;
};
zsh = {
enable = true;
enableCompletion = true;
autosuggestion.enable = true;
syntaxHighlighting.enable = true;
};
};
}