summaryrefslogtreecommitdiff
path: root/modules/core/networking/firewall/default.nix
blob: 2da25021384eedf0cdc74fd2c71e8323abd2df78 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{
  imports = [ ./fail2ban.nix ];

  networking.firewall = {
    allowPing = false;
    logReversePathDrops = true;
    logRefusedConnections = false;
    checkReversePath = "loose";
  };
}