nixos-configs/homeModules/zsh-basics.nix

14 lines
242 B
Nix
Raw Normal View History

2025-09-14 13:36:45 +02:00
{
programs = {
command-not-found.enable = true;
dircolors.enable = true;
zsh = {
enable = true;
syntaxHighlighting.enable = true;
autosuggestion.enable = true;
enableVteIntegration = true;
};
};
}