diff options
author | Soispha <soispha@vhack.eu> | 2024-02-28 20:26:18 +0100 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2024-02-28 20:26:18 +0100 |
commit | c733f3326a34a57dfab4c17da659316fdb6eab6a (patch) | |
tree | 1f94d7c4ad524649dfe207a25c0c3781b2909476 /hm/soispha/conf/nix-index | |
parent | chore(hm/soispha/conf/taskwarrior/projects): Update (diff) | |
download | nixos-config-c733f3326a34a57dfab4c17da659316fdb6eab6a.zip |
feat(hm): Add nix-index and associated command_not_found_handler
Diffstat (limited to 'hm/soispha/conf/nix-index')
-rw-r--r-- | hm/soispha/conf/nix-index/default.nix | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/hm/soispha/conf/nix-index/default.nix b/hm/soispha/conf/nix-index/default.nix new file mode 100644 index 00000000..eb8132d9 --- /dev/null +++ b/hm/soispha/conf/nix-index/default.nix @@ -0,0 +1,14 @@ +{...}: { + programs.nix-index = { + enable = true; + symlinkToCacheHome = true; + + # Handled by myself (and the script is overridden) + enableBashIntegration = false; + enableZshIntegration = false; + enableFishIntegration = false; + }; + programs.nix-index-database = { + comma.enable = false; + }; +} |