nichts/modules/programs/other/nix-index.nix

17 lines
327 B
Nix
Raw Normal View History

2024-09-22 01:46:52 +02:00
{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;
};
};
}