17 lines
266 B
Nix
17 lines
266 B
Nix
{ ... }:
|
|
|
|
{
|
|
services.nullmailer = {
|
|
enable = true;
|
|
|
|
setSendmail = true;
|
|
config = {
|
|
remotes = ''
|
|
taf.lyes.eu smtp
|
|
'';
|
|
adminaddr = "root@lyes.eu";
|
|
defaulthost = "lyes.eu";
|
|
allmailfrom = "root@lyes.eu";
|
|
};
|
|
};
|
|
}
|