7 lines
229 B
Nix
7 lines
229 B
Nix
{ lib, config, inputs, ... }:
|
|
{
|
|
config = lib.mkIf (config.osbmModules.nixIndex.enable && inputs ? nix-index-database) {
|
|
programs.nix-index-database.comma.enable = true;
|
|
programs.command-not-found.enable = false;
|
|
};
|
|
}
|