nixos-configuration/homeModules/zsh-basics.nix
Vinzenz Schroeter 1b3b7cf607 more homeModules
2025-09-14 13:36:45 +02:00

13 lines
242 B
Nix

{
programs = {
command-not-found.enable = true;
dircolors.enable = true;
zsh = {
enable = true;
syntaxHighlighting.enable = true;
autosuggestion.enable = true;
enableVteIntegration = true;
};
};
}