nixos-config/nixos/components/gui/home-manager/default.nix

12 lines
209 B
Nix
Raw Normal View History

2023-02-17 00:41:22 +01:00
{ pkgs, lib, config, ... }:
with lib;
{
2023-06-10 20:57:07 +02:00
config = mkIf config.components.gui.enable {
2023-02-17 00:41:22 +01:00
# don't run autoload -U compinit && compinit before ~/.zshrc
programs.zsh.enableGlobalCompInit = false;
};
}