summaryrefslogtreecommitdiff
path: root/hosts/experimental-nixos/networking.nix
blob: 1d7e4e03c15e0b00d716159678a6ef834ed94dca (plain)
1
2
3
4
5
6
7
{pkgs, ...}: {
  networking.firewall = {
    enable = true;
    package = pkgs.iptables;
    allowedTCPPorts = [80 443 25 465 587 110 995 143 993];
  };
}