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

def 2024-04-19 01:01:21 +03:00
parent a7a11cd2ca
commit cdf3f1c7dd
1 changed files with 11 additions and 1 deletions

View File

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