nixos/fail2ban: others small update

Izorkin edb40b3e 544ebba9

Changed files
+1 -1
nixos
modules
services
security
+1 -1
nixos/modules/services/security/fail2ban.nix
···
}
];
-
warnings = mkIf (config.networking.firewall.enable == false && config.networking.nftables.enable == false) [
"fail2ban can not be used without a firewall"
];
···
}
];
+
warnings = mkIf (!config.networking.firewall.enable && !config.networking.nftables.enable) [
"fail2ban can not be used without a firewall"
];