aboutsummaryrefslogtreecommitdiff
path: root/profiles/network/fail2ban.nix
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2025-10-09 19:21:46 -0700
committerFranck Cuny <franck@fcuny.net>2025-10-09 19:21:46 -0700
commita0c2fdc90aefe9fc2e5d8f75eb7e7a1ef4974b2e (patch)
treeae2bbf86c8392c0722a373ae11ec20abd7201bf8 /profiles/network/fail2ban.nix
parentmove common modules under modules/ (diff)
downloadinfra-a0c2fdc90aefe9fc2e5d8f75eb7e7a1ef4974b2e.tar.gz
more simplification of the configuration
Diffstat (limited to '')
-rw-r--r--profiles/network/fail2ban.nix15
1 files changed, 0 insertions, 15 deletions
diff --git a/profiles/network/fail2ban.nix b/profiles/network/fail2ban.nix
deleted file mode 100644
index 6aa6613..0000000
--- a/profiles/network/fail2ban.nix
+++ /dev/null
@@ -1,15 +0,0 @@
-{ ... }:
-{
- services.fail2ban = {
- enable = true;
- ignoreIP = [
- "10.100.0.0/24" # wireguard
- ];
- bantime = "1h";
- bantime-increment = {
- enable = true;
- maxtime = "168h";
- factor = "4";
- };
- };
-}