12 lines
280 B
Nix
12 lines
280 B
Nix
{inputs, ...}: {
|
|
imports = [inputs.nix-index-database.hmModules.nix-index];
|
|
|
|
programs = {
|
|
nix-index-database.comma.enable = true;
|
|
nix-index = {
|
|
enableBashIntegration = false;
|
|
enableFishIntegration = false;
|
|
enableZshIntegration = false;
|
|
};
|
|
};
|
|
}
|