nixos-config/config/programs/zsh.nix

12 lines
241 B
Nix

desktop: _: {
programs = {
zsh = {
enable = true;
enableAutosuggestions = true;
enableCompletion = true;
enableSyntaxHighlighting = true;
enableVteIntegration = desktop;
autocd = true;
};
};
}