12 lines
160 B
Nix
12 lines
160 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
services.postfix = {
|
|
enable = true;
|
|
enableSubmission = true;
|
|
|
|
extraConfig = ''
|
|
inet_interfaces = 127.0.0.1
|
|
'';
|
|
};
|
|
}
|