nichts/modules/programs/other/nix-index.nix
2024-09-22 01:46:52 +02:00

16 lines
327 B
Nix

{pkgs, ...}: {
programs = {
command-not-found = {
# TODO fix this
enable = false;
dbPath = pkgs.sqlite;
};
nix-index = {
enable = true;
package = pkgs.nix-index;
enableBashIntegration = true;
enableZshIntegration = true;
enableFishIntegration = true;
};
};
}