This repository has been archived on 2024-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
nixos/modules/mail.nix

20 lines
381 B
Nix
Raw Permalink Normal View History

2023-06-07 21:32:14 +05:30
{ ... }:
{
2023-06-09 23:16:37 +05:30
systemd.tmpfiles.rules = [
"f /run/agenix/gandalf_mail 0777 payas users -"
];
2023-06-07 21:32:14 +05:30
programs.msmtp = {
enable = true;
setSendmail = true;
accounts.default = {
auth = true;
2023-06-08 23:22:45 +05:30
host = "smtp.purelymail.com";
2023-06-07 21:32:14 +05:30
port = 587;
tls = true;
2023-06-08 23:22:45 +05:30
user = "gandalf@bhankas.org";
passwordeval = "cat /run/agenix/gandalf_mail";
2023-06-07 21:32:14 +05:30
};
};
}