Update sp-modules/simple-nixos-mailserver/config.nix

def 2024-04-24 01:44:02 +03:00
parent cdf3f1c7dd
commit 115082c5a3
1 changed files with 10 additions and 9 deletions

View File

@ -89,14 +89,15 @@ lib.mkIf sp.modules.simple-nixos-mailserver.enable
virusScanning = false;
};
{
services.roundcube = {
enable = true;
hostName = "mail.bloodwine.cyou";
};
services.nginx.enable = true;
networking.firewall.allowedTCPPorts = [ 80 443 ];
{
services.roundcube = {
enable = true;
hostName = "mail.bloodwine.cyou";
};
services.nginx = {
enable = true;
};
networking.firewall.allowedTCPPorts = [ 80 443 ];
}