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

17 lines
217 B
Nix
Raw Normal View History

2024-08-29 03:26:04 +02:00
{
pkgs,
lib,
config,
...
}:
2023-02-17 00:41:22 +01:00
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;
};
}