diff --git a/home/shell/default.nix b/home/shell/default.nix index 376eaea..e026227 100644 --- a/home/shell/default.nix +++ b/home/shell/default.nix @@ -8,6 +8,7 @@ ./git.nix ./micro.nix ./ssh.nix + ./nix-index.nix ./mpv.nix ./tmux.nix ./fish.nix diff --git a/home/shell/nix-index.nix b/home/shell/nix-index.nix new file mode 100644 index 0000000..0cac212 --- /dev/null +++ b/home/shell/nix-index.nix @@ -0,0 +1,8 @@ +{...}: { + programs.command-not-found.enable = false; + + programs.nix-index = { + enable = true; + enableFishIntegration = true; + }; +}