Compare commits

...

1 commit

Author SHA1 Message Date
cec0e2e69b postfix 2024-04-30 12:43:13 -07:00
2 changed files with 13 additions and 0 deletions

View file

@ -4,6 +4,7 @@
./misskey-service.nix ./misskey-service.nix
./heartles-xyz-proxy.nix ./heartles-xyz-proxy.nix
./ogdo.nix ./ogdo.nix
./postfix.nix
]; ];
nix.settings = { nix.settings = {

12
postfix.nix Normal file
View file

@ -0,0 +1,12 @@
{ pkgs, ... }:
{
services.postfix = {
enable = true;
enableSubmission = true;
extraConfig = ''
inet_interfaces = 127.0.0.1
'';
};
}