nixos-flake/postfix.nix
2024-06-06 18:02:01 -07:00

12 lines
160 B
Nix

{ pkgs, ... }:
{
services.postfix = {
enable = true;
enableSubmission = true;
extraConfig = ''
inet_interfaces = 127.0.0.1
'';
};
}