dotfiles-nix/modules/programs/zsh/default.nix

14 lines
150 B
Nix
Raw Normal View History

2025-01-21 02:43:35 +00:00
{ ... }:
{
config = {
programs.zsh = {
enable = true;
enableCompletion = true;
enableGlobalCompInit = false;
};
};
}