From bc0bade7f4bc8841178fbad4ffdb6e5f3a80f886 Mon Sep 17 00:00:00 2001 From: Jimbo Date: Sat, 22 Feb 2025 02:54:46 -0500 Subject: [PATCH] Add back command-not-found --- modules/home/programs/terminal/default.nix | 1 + modules/home/programs/terminal/not-found/default.nix | 4 ++++ 2 files changed, 5 insertions(+) create mode 100644 modules/home/programs/terminal/not-found/default.nix diff --git a/modules/home/programs/terminal/default.nix b/modules/home/programs/terminal/default.nix index 98621b6..1339805 100644 --- a/modules/home/programs/terminal/default.nix +++ b/modules/home/programs/terminal/default.nix @@ -8,6 +8,7 @@ ./ncmpcpp ./neovim ./nh + ./not-found ./ranger ./spotdl ./tmux diff --git a/modules/home/programs/terminal/not-found/default.nix b/modules/home/programs/terminal/not-found/default.nix new file mode 100644 index 0000000..f5ed4b1 --- /dev/null +++ b/modules/home/programs/terminal/not-found/default.nix @@ -0,0 +1,4 @@ +{ ... }: +{ + programs.command-not-found.enable = true; +}