flake/modules/nixos/system/nix-index.nix
2025-10-19 16:13:59 +03:00

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;
};
}