15 lines
220 B
Nix
15 lines
220 B
Nix
|
{
|
||
|
programs.msmtp = {
|
||
|
enable = true;
|
||
|
setSendmail = true;
|
||
|
accounts = {
|
||
|
defaults = {
|
||
|
auth = true;
|
||
|
tls = true;
|
||
|
host = "smtp.migadu.com";
|
||
|
port = 465;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|