postfix
This commit is contained in:
parent
ae4501b5af
commit
084d9077a1
2 changed files with 13 additions and 0 deletions
|
@ -4,6 +4,7 @@
|
|||
./misskey-service.nix
|
||||
./heartles-xyz-proxy.nix
|
||||
./ogdo.nix
|
||||
./postfix.nix
|
||||
];
|
||||
|
||||
nix.settings = {
|
||||
|
|
12
postfix.nix
Normal file
12
postfix.nix
Normal file
|
@ -0,0 +1,12 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
services.postfix = {
|
||||
enable = true;
|
||||
enableSubmission = true;
|
||||
|
||||
extraConfig = ''
|
||||
inet_interfaces = 127.0.0.1
|
||||
'';
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue