Add email accounts properly using nix

Switch to notmuch instead of mu due to mu/mu4e nix weirdness
This commit is contained in:
Evie Litherland-Smith 2023-09-14 08:30:55 +01:00
parent 0c8ac307b5
commit 3fe286c2a0
2 changed files with 100 additions and 14 deletions

View file

@ -1,19 +1,105 @@
{ pkgs, hostName, ... }: { pkgs, hostName, ... }:
{ {
# accounts.emails.accounts = {}; # TODO accounts.email.accounts = let
home.packages = with pkgs; [ protonmail-bridge davmail vdirsyncer ]; realName = "Evelyn Litherland-Smith";
programs = { notmuch.enable = true;
mu.enable = true;
in {
proton = let
host = "127.0.0.1";
tls.enable = false;
in rec {
inherit realName notmuch;
maildir.path = "Proton";
imap = {
inherit host tls;
port = 1143;
};
smtp = {
inherit host tls;
port = 1025;
};
address = "e.litherlandsmith@proton.me";
aliases = [ "evie@xenia.me.uk" "evie@litherlandsmith.slmail.me" ];
passwordCommand = "${pkgs.pass}/bin/pass show Mail/Proton/${hostName}";
primary = true;
userName = address;
mbsync = { mbsync = {
enable = true; enable = true;
extraConfig = import ./config/mbsync.nix { inherit pkgs hostName; }; create = "both";
expunge = "both";
subFolders = "Verbatim";
extraConfig.account.AuthMechs = "LOGIN";
}; };
msmtp = { msmtp = {
enable = true; enable = true;
extraConfig = import ./config/msmtp.nix { inherit pkgs hostName; }; extraConfig = {
tls = "off";
auth = "login";
}; };
};
};
icloud = rec {
inherit realName notmuch;
maildir.path = "iCloud";
imap.host = "imap.mail.me.com";
smtp.host = "smtp.mail.me.com";
address = "e.litherlandsmith@icloud.com";
passwordCommand = "${pkgs.pass}/bin/pass show Mail/iCloud/mbsync";
userName = address;
mbsync = {
enable = true;
create = "both";
expunge = "both";
subFolders = "Verbatim";
};
msmtp.enable = true;
};
ukaea = let
host = "127.0.0.1";
tls.enable = false;
in rec {
inherit realName notmuch;
maildir.path = "UKAEA";
imap = {
inherit host tls;
port = 1144;
};
smtp = {
inherit host tls;
port = 1026;
};
address = "evie.litherland-smith@ukaea.uk";
passwordCommand = "${pkgs.pass}/bin/pass show Mail/Outlook/ukaea";
userName = address;
mbsync = {
enable = true;
create = "both";
expunge = "both";
subFolders = "Verbatim";
extraConfig.account.AuthMechs = "LOGIN";
};
msmtp = {
enable = true;
extraConfig = {
tls = "off";
auth = "login";
};
};
};
};
home.packages = with pkgs; [ protonmail-bridge davmail vdirsyncer ];
programs = {
mbsync = { enable = true; };
msmtp = { enable = true; };
# vdirsyncer = { enable = true; }; # vdirsyncer = { enable = true; };
notmuch = {
enable = true;
maildir.synchronizeFlags = true;
};
afew.enable = true;
alot.enable = true;
}; };
xdg.configFile."vdirsyncer/config".text = xdg.configFile."vdirsyncer/config".text =
import ./config/vdirsyncer.nix { inherit pkgs; }; import ./config/vdirsyncer.nix { inherit pkgs; };

View file

@ -2,8 +2,8 @@
{ {
imports = [ ./default.nix ]; imports = [ ./default.nix ];
services.mbsync = { # services.mbsync = {
enable = true; # enable = true;
frequency = "*-*-* *:0/15:00"; # frequency = "*-*-* *:0/15:00";
}; # };
} }