diff options
author | Minijackson <minijackson@riseup.net> | 2024-02-14 19:08:21 +0100 |
---|---|---|
committer | Minijackson <minijackson@riseup.net> | 2024-02-14 19:08:21 +0100 |
commit | 422387c04353117166b4f91fe3d578c385a11659 (patch) | |
tree | 8b55412380fbde8f30ad30100465b9b844fd8a58 /common/commandline.nix | |
parent | a8b763737ddb4946e78f2388f03df7ea124dc317 (diff) | |
download | nixos-config-reborn-422387c04353117166b4f91fe3d578c385a11659.tar.gz nixos-config-reborn-422387c04353117166b4f91fe3d578c385a11659.zip |
common/commandline: use nix-index instead of command-not-found
Diffstat (limited to 'common/commandline.nix')
-rw-r--r-- | common/commandline.nix | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/common/commandline.nix b/common/commandline.nix index 0563b0b..1bbb805 100644 --- a/common/commandline.nix +++ b/common/commandline.nix | |||
@@ -75,6 +75,13 @@ in { | |||
75 | Defaults lecture_file = "${lectureFile}" | 75 | Defaults lecture_file = "${lectureFile}" |
76 | ''; | 76 | ''; |
77 | 77 | ||
78 | programs.command-not-found.enable = false; | ||
79 | programs.nix-index = { | ||
80 | enable = true; | ||
81 | enableBashIntegration = true; | ||
82 | enableZshIntegration = true; | ||
83 | }; | ||
84 | |||
78 | home-manager.users.minijackson = { | 85 | home-manager.users.minijackson = { |
79 | programs.bash.enable = true; | 86 | programs.bash.enable = true; |
80 | 87 | ||