Unverified Commit 7f94b9e9 authored by Sandro Jäckel's avatar Sandro Jäckel
Browse files

nixos/fail2ban: change bantime default to not be config breaking

parent ac46dc76
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -103,9 +103,9 @@ in
      };

      bantime = mkOption {
        default = null;
        type = types.nullOr types.str;
        example = "10m";
        default = "10m";
        type = types.str;
        example = "1h";
        description = lib.mdDoc "Number of seconds that a host is banned.";
      };