rm sshguard
This commit is contained in:
parent
0e48ec63f4
commit
c2e58f1314
@ -369,7 +369,6 @@ in
|
||||
};
|
||||
|
||||
services = {
|
||||
sshguard.enable = true;
|
||||
gitea.enable = true;
|
||||
hass.enable = true;
|
||||
syncthing-relay.enable = true;
|
||||
|
@ -85,7 +85,6 @@ in
|
||||
};
|
||||
|
||||
services = {
|
||||
sshguard.enable = false;
|
||||
ssh8022.client = {
|
||||
enable = true;
|
||||
keyfile = config.age.secrets.ssh8022-client.path;
|
||||
|
@ -70,8 +70,6 @@ in
|
||||
};
|
||||
|
||||
services = {
|
||||
sshguard.enable = false;
|
||||
|
||||
ssh8022.client = {
|
||||
enable = true;
|
||||
keyfile = config.age.secrets.ssh8022-client.path;
|
||||
|
@ -78,7 +78,6 @@
|
||||
services = {
|
||||
tailscale.enable = true;
|
||||
node_exporter.enable = true;
|
||||
sshguard.enable = true;
|
||||
|
||||
borgstor = {
|
||||
enable = true;
|
||||
|
@ -19,7 +19,6 @@
|
||||
./postfix
|
||||
./remote-builder
|
||||
./ssh8022
|
||||
./sshguard
|
||||
./syncthing
|
||||
./syncthing-relay
|
||||
./tailscale
|
||||
|
@ -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));
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user