2023-07-26 14:10:22 +03:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
lib,
|
|
|
|
myData,
|
|
|
|
...
|
|
|
|
}: {
|
|
|
|
options.mj.base.sshguard = with lib.types; {
|
|
|
|
enable = lib.mkOption {
|
|
|
|
type = bool;
|
|
|
|
default = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = lib.mkIf config.mj.base.sshguard.enable {
|
|
|
|
services.sshguard = {
|
|
|
|
enable = true;
|
|
|
|
blocktime = 900;
|
2023-07-26 15:10:39 +03:00
|
|
|
whitelist =
|
|
|
|
[
|
|
|
|
"192.168.0.0/16"
|
|
|
|
myData.tailscale_subnet.cidr
|
|
|
|
]
|
|
|
|
++ (lib.catAttrs "publicIP" (lib.attrValues myData.hosts));
|
2023-07-26 14:10:22 +03:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|