nichts/modules/programs/other/nix-index.mod.nix
2025-07-16 22:15:41 +02:00

11 lines
212 B
Nix

{pkgs, ...}: {
programs = {
# We have to disable this and use nix-index instead. (Rust >>> Pearl)
command-not-found = {
enable = false;
};
nix-index = {
enable = true;
};
};
}