From 976ebbe755be0e0b15ed4e25a6716d0bfdec7812 Mon Sep 17 00:00:00 2001 From: oddlama Date: Mon, 24 Jun 2024 12:51:23 +0200 Subject: [PATCH] feat: enable linking zsh completions --- config/home-manager.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/config/home-manager.nix b/config/home-manager.nix index 12f1587..4da7b18 100644 --- a/config/home-manager.nix +++ b/config/home-manager.nix @@ -34,4 +34,8 @@ # times of 1-2 seconds. Disable the completion here and only keep the home-manager one to fix it. enableCompletion = false; }; + + # But still link all completions from all packages so they + # can be found by zsh + environment.pathsToLink = ["/share/zsh"]; }