mirror of
https://github.com/Nickiel12/nicks-nix-config.git
synced 2024-11-23 05:09:32 -08:00
21 lines
402 B
Nix
21 lines
402 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
|
|
programs.msmtp = {
|
|
enable = true;
|
|
setSendmail = true;
|
|
accounts = {
|
|
default = {
|
|
host = "smtp.gmail.com";
|
|
port = 587;
|
|
tls = true;
|
|
tls_starttls = true;
|
|
auth = true;
|
|
from = "noreply@nickiel.net";
|
|
user = "nickiel.is.a.dev";
|
|
passwordeval = "cat /Aurora/mail.password";
|
|
};
|
|
};
|
|
};
|
|
}
|