nixdots/home/programs/terminal/tools/nix-index.nix

13 lines
365 B
Nix
Raw Normal View History

2024-07-26 23:07:07 +00:00
{config, ...}: {
2024-04-15 21:10:06 +00:00
programs = {
# nix-index is a file database for nixpkgs
# this provides `nix-locate` command.
nix-index = {
enable = true;
# Attempt to find the package that contains the non-existent command
2024-04-15 21:10:06 +00:00
enableBashIntegration = config.programs.bash.enable;
enableZshIntegration = config.programs.zsh.enable;
};
};
}