16 lines
217 B
Nix
16 lines
217 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
config,
|
|
...
|
|
}:
|
|
with lib;
|
|
{
|
|
|
|
config = mkIf config.components.gui.enable {
|
|
|
|
# don't run autoload -U compinit && compinit before ~/.zshrc
|
|
programs.zsh.enableGlobalCompInit = false;
|
|
|
|
};
|
|
}
|