diff options
author | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-09-27 16:44:59 +0200 |
---|---|---|
committer | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-09-29 13:47:01 +0200 |
commit | 09dc6195452ab896bd2e757188e9fc0b9846b8d0 (patch) | |
tree | 323080bdd64e3b47ac522a4d50c4bad0fa6c3358 | |
parent | Module: Email: Enable imapnotify service (diff) | |
download | nixos-config-09dc6195452ab896bd2e757188e9fc0b9846b8d0.tar.gz nixos-config-09dc6195452ab896bd2e757188e9fc0b9846b8d0.tar.bz2 nixos-config-09dc6195452ab896bd2e757188e9fc0b9846b8d0.zip |
Module: Email: Mutt: Add extraConfig
-rw-r--r-- | modules/email/default.nix | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/modules/email/default.nix b/modules/email/default.nix index 24daf93..d79e88a 100644 --- a/modules/email/default.nix +++ b/modules/email/default.nix @@ -55,6 +55,12 @@ }; neomutt = { enable = true; + extraConfig = '' + set edit_headers = yes # See the headers when editing + set charset = UTF-8 # value of $LANG; also fallback for send_charset + unset use_domain # because joe@localhost is just embarrassing + set use_from = yes + ''; /*extraConfig = '' set imap_user = 'manuelpalenzuelamerino@gmail.com' set imap_pass = '${secrets.email."manuelpalenzuelamerino@gmail.com".password}' |