This commit is contained in:
jaina heartles 2024-04-30 12:43:13 -07:00
parent feda4756da
commit cec0e2e69b
2 changed files with 13 additions and 0 deletions

View File

@ -4,6 +4,7 @@
./misskey-service.nix
./heartles-xyz-proxy.nix
./ogdo.nix
./postfix.nix
];
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
'';
};
}