From 6470e2b79fabb12acf3d9ccd7bebcd137056914e Mon Sep 17 00:00:00 2001 From: Crony Akatsuki Date: Fri, 31 Jan 2025 22:25:16 +0100 Subject: [PATCH] Fix slow zsh startup. --- modules/nixos/zsh.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/nixos/zsh.nix b/modules/nixos/zsh.nix index fea2b53..789f72b 100644 --- a/modules/nixos/zsh.nix +++ b/modules/nixos/zsh.nix @@ -11,6 +11,7 @@ config = lib.mkIf config.crony.zsh.enable { # Installing zsh programs.zsh.enable = true; + programs.zsh.enableCompletion = false; users.defaultUserShell = pkgs.zsh; environment.pathsToLink = ["/share/zsh"]; };