Init gravatar recon

Signed-off-by: Hadi <112569860+anotherhadi@users.noreply.github.com>
This commit is contained in:
Hadi
2025-09-25 19:47:06 +02:00
parent a6383c9de3
commit 8729b0c779
15 changed files with 359 additions and 103 deletions

View File

@@ -99,6 +99,11 @@ in {
default = false;
description = "Activate the github-recon deep mode";
};
gravatarRecon = lib.mkOption {
type = lib.types.bool;
default = true;
description = "Activate the gravatar-recon OSINT module";
};
};
config = lib.mkIf cfg.enable {
@@ -147,6 +152,11 @@ in {
then "true"
else "false"
}"
"GRAVATAR_RECON=${
if cfg.gravatarRecon
then "true"
else "false"
}"
];
};
};