mirror of
https://github.com/Nickiel12/nicks-nix-config.git
synced 2024-11-22 20:59:32 -08:00
22 lines
402 B
Nix
22 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";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|