egirls-nixos/postfix.nix

13 lines
160 B
Nix
Raw Normal View History

2024-04-30 19:43:13 +00:00
{ pkgs, ... }:
{
services.postfix = {
enable = true;
enableSubmission = true;
extraConfig = ''
inet_interfaces = 127.0.0.1
'';
};
}