11 lines
209 B
Nix
11 lines
209 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;
|
|
|
|
};
|
|
}
|