diff options
author | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-09-27 17:18:51 +0200 |
---|---|---|
committer | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-09-29 13:47:02 +0200 |
commit | 3ea5cc89ac5ee11433e7557c487d1295fd412509 (patch) | |
tree | 6dd2a4302e8341f7755e72b8ccfd693e30975bfc | |
parent | Module: Email: Remove notmuch (diff) | |
download | nixos-config-3ea5cc89ac5ee11433e7557c487d1295fd412509.tar.gz nixos-config-3ea5cc89ac5ee11433e7557c487d1295fd412509.tar.bz2 nixos-config-3ea5cc89ac5ee11433e7557c487d1295fd412509.zip |
Module: Email: Remove flavor
-rw-r--r-- | modules/email/default.nix | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/modules/email/default.nix b/modules/email/default.nix index daf18c2..c7ebc49 100644 --- a/modules/email/default.nix +++ b/modules/email/default.nix @@ -21,7 +21,6 @@ accounts = { "manuelpalenzuelamerino@gmail.com" = { primary = true; - flavor = "gmail.com"; realName = "Manuel Palenzuela Merino"; signature = { @@ -34,6 +33,16 @@ address = "manuelpalenzuelamerino@gmail.com"; userName = "manuelpalenzuelamerino@gmail.com"; + imap = { + host = "imap.gmail.com"; + port = 993; + }; + + smtp = { + host = "smtp.gmail.com"; + port = 587; + }; + imapnotify = { enable = true; boxes = [ "Inbox" ]; |