dotfiles-nix/modules/programs/zsh/default.nix
2025-01-21 02:45:29 +00:00

13 lines
150 B
Nix

{ ... }:
{
config = {
programs.zsh = {
enable = true;
enableCompletion = true;
enableGlobalCompInit = false;
};
};
}