enable nix-index and disable command-not-found

- Enable nix-index program to provide package search functionality
- Disable command-not-found as nix-index handles missing command suggestions instead
- Maintains consistency with recent nix configuration improvements
This commit is contained in:
Harald Hoyer 2025-12-03 16:32:47 +01:00
parent 29e4ef307b
commit 8fba80933c

View file

@ -52,6 +52,8 @@ in
]; ];
#systemd.services.nix-daemon.environment.TMPDIR = "/var/tmp"; #systemd.services.nix-daemon.environment.TMPDIR = "/var/tmp";
programs.nix-index.enable = true;
programs.command-not-found.enable = false; # nix-index handles it instead
nix = nix =
let let