nixfiles/config/services/mailcow.nix
2024-05-06 20:43:11 +02:00

14 lines
353 B
Nix

{ pkgs, ... }: {
networking.firewall.allowedTCPPorts = [ 25 110 143 465 587 993 995 4190 ];
environment.systemPackages = [ pkgs.docker-compose ];
virtualisation.docker = {
enable = true;
daemon.settings = {
ipv6 = true;
fixed-cidr-v6 = "fd00:dead:beef:c0::/80";
experimental = true;
ip6tables = true;
};
};
}