rm sshguard

This commit is contained in:
2024-08-27 08:44:05 +03:00
parent 0e48ec63f4
commit c2e58f1314
6 changed files with 0 additions and 31 deletions

View File

@@ -19,7 +19,6 @@
./postfix
./remote-builder
./ssh8022
./sshguard
./syncthing
./syncthing-relay
./tailscale

View File

@@ -1,25 +0,0 @@
{
config,
lib,
myData,
...
}:
{
options.mj.services.sshguard = with lib.types; {
enable = lib.mkOption {
type = bool;
default = false;
};
};
config = lib.mkIf config.mj.services.sshguard.enable {
services.sshguard = {
enable = true;
blocktime = 900;
whitelist = [
"192.168.0.0/16"
myData.subnets.tailscale.cidr
] ++ (lib.catAttrs "publicIP" (lib.attrValues myData.hosts));
};
};
}