diff --git a/sp-modules/simple-nixos-mailserver/config.nix b/sp-modules/simple-nixos-mailserver/config.nix index 6437773..a2432cd 100644 --- a/sp-modules/simple-nixos-mailserver/config.nix +++ b/sp-modules/simple-nixos-mailserver/config.nix @@ -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 ]; }