Adding an account to Thunderbird?

This commit is contained in:
Annika Merris 2024-05-26 13:39:22 -04:00
parent fcded54d58
commit 95872744a2

View file

@ -9,9 +9,25 @@
};
};
config = lib.mkIf (config.gui.enable && config.thunderbird.enable) {
accounts.email.accounts = {
adhdgirl = {
userName = "";
realName = "Annika Merris";
address = "annika@adhdgirl.com";
imap.host = "imap.purelymail.com";
imap.port = 993;
smtp.host = "smtp.purelymail.com";
smtp.port = 465;
thunderbird.enable = true;
};
};
# tktkmodtchcslyirtlgj
home-manager.users.${config.user} = {
programs.thunderbird = {
enable = true;
profiles = {
adhdgirl.isDefault = true;
};
};
};
};