From a40c6064f210c4568cbf604784c111cda1499c53 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Laure=CE=B7t?= Date: Sat, 5 Oct 2024 18:47:51 +0200 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20(home)=20add=20nix-index?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- home/shell/default.nix | 1 + home/shell/nix-index.nix | 8 ++++++++ 2 files changed, 9 insertions(+) create mode 100644 home/shell/nix-index.nix 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; + }; +}