summary refs log tree commit diff stats
path: root/system/services/firewall/default.nix
blob: 23dbcc42a25e1aacb110da3ee5e571e79274456f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
# vim: ts=2
{...}: {
  networking.firewall = {
    allowedTCPPorts = [
      # for mail protocols:
      465 # SMTP SSL
      995 # POP3 SSL
      993 # IMAP SSL
    ];
  };
}