From 76a86402463470686f10c8457210d974c06715d3 Mon Sep 17 00:00:00 2001 From: ItsDrike Date: Tue, 16 Apr 2024 12:02:24 +0200 Subject: [PATCH] Remove command-not-found in favor of nix-index integration) --- home/programs/terminal/tools/nix-index.nix | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/home/programs/terminal/tools/nix-index.nix b/home/programs/terminal/tools/nix-index.nix index 241e136..5b4df13 100644 --- a/home/programs/terminal/tools/nix-index.nix +++ b/home/programs/terminal/tools/nix-index.nix @@ -4,12 +4,9 @@ # this provides `nix-locate` command. nix-index = { enable = true; + # Attempt to find the package that contains the non-existent command enableBashIntegration = config.programs.bash.enable; enableZshIntegration = config.programs.zsh.enable; }; - - # Allows interactive shells to show which Nix package (if any) - # provides a missing command. - command-not-found.enable = true; }; }