{
  pkgs,
  lib,
  config,
  ...
}:
with lib;
{

  config = mkIf config.components.gui.enable {

    # don't run autoload -U compinit && compinit before ~/.zshrc
    programs.zsh.enableGlobalCompInit = false;

  };
}