From 1d7ec761a3460b762195d7bcde2650ca75ad2edb Mon Sep 17 00:00:00 2001 From: Lillian-Violet Date: Sun, 17 Dec 2023 22:29:36 +0100 Subject: [PATCH] Maybe remove with lib --- nixos/queen/webmail.nix | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/nixos/queen/webmail.nix b/nixos/queen/webmail.nix index 4369b22..4acca69 100644 --- a/nixos/queen/webmail.nix +++ b/nixos/queen/webmail.nix @@ -3,8 +3,7 @@ pkgs, lib, ... -}: -with lib; { +}: { services.roundcube = { enable = true; # this is the url of the vhost, not necessarily the same as the fqdn of @@ -18,8 +17,4 @@ with lib; { $config['smtp_pass'] = "%p"; ''; }; - - services.nginx.enable = true; - - networking.firewall.allowedTCPPorts = [80 443]; }