17 lines
275 B
Nix
17 lines
275 B
Nix
{
|
|
networking.firewall.allowedTCPPorts = [ 80 443 ];
|
|
|
|
security.acme = {
|
|
acceptTerms = true;
|
|
defaults.email = "postmaster@billenius.com";
|
|
};
|
|
|
|
imports = [
|
|
./autodiscover.nix
|
|
./mail.nix
|
|
./mobileconfig.nix
|
|
./radicale.nix
|
|
./roundcube.nix
|
|
];
|
|
}
|