idiosyn/nixos/module/email.nix

6 lines
114 B
Nix
Raw Normal View History

2024-08-18 13:47:18 +02:00
{ ... }: { lib, ... }: {
services.postfix.config = lib.mkDefault {
smtpd_tls_security_level = "may";
};
}