edison: add email client
This commit is contained in:
parent
8eaf7ab934
commit
67755aa4a0
|
@ -0,0 +1,52 @@
|
||||||
|
{ config, pkgs, lib, ... }:
|
||||||
|
{
|
||||||
|
programs.neomutt = {
|
||||||
|
enable = true;
|
||||||
|
sidebar = {
|
||||||
|
enable = true;
|
||||||
|
width = 30;
|
||||||
|
};
|
||||||
|
sort = "reverse-threads";
|
||||||
|
vimKeys = true;
|
||||||
|
checkStatsInterval = 60;
|
||||||
|
};
|
||||||
|
|
||||||
|
programs.mbsync.enable = true;
|
||||||
|
programs.notmuch = {
|
||||||
|
enable = true;
|
||||||
|
hooks = {
|
||||||
|
preNew = "mbsync --all";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
# programs.msmtp.enable = true;
|
||||||
|
|
||||||
|
accounts.email = {
|
||||||
|
accounts.felix-albrigtsen-it = rec {
|
||||||
|
address = "felix@albrigtsen.it";
|
||||||
|
userName = address;
|
||||||
|
primary = true;
|
||||||
|
realName = "Felix Albrigtsen";
|
||||||
|
signature = {
|
||||||
|
text = ''
|
||||||
|
Med vennlig hilsen
|
||||||
|
${realName}
|
||||||
|
'';
|
||||||
|
showSignature = "append";
|
||||||
|
};
|
||||||
|
|
||||||
|
imap.host = "imap.migadu.com";
|
||||||
|
smtp.host = "smtp.migadu.com";
|
||||||
|
passwordCommand = "cat ~/.secrets/email/migadu"; # yolo / TODO
|
||||||
|
|
||||||
|
mbsync = {
|
||||||
|
enable = true;
|
||||||
|
create = "maildir"; # Create subfolders locally
|
||||||
|
# expugne = "both";
|
||||||
|
};
|
||||||
|
msmtp.enable = true;
|
||||||
|
notmuch.enable = true;
|
||||||
|
neomutt.enable = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
|
@ -6,6 +6,7 @@
|
||||||
|
|
||||||
imports = [
|
imports = [
|
||||||
./../../home/base.nix
|
./../../home/base.nix
|
||||||
|
./email.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
programs = {
|
programs = {
|
||||||
|
|
Loading…
Reference in New Issue