diff --git a/modules/common/applications/thunderbird.nix b/modules/common/applications/thunderbird.nix index 1b853b7..b737ec5 100644 --- a/modules/common/applications/thunderbird.nix +++ b/modules/common/applications/thunderbird.nix @@ -27,11 +27,27 @@ }; thunderbird.enable = true; }; + annikamerris_com = { + primary = false; + userName = "me@annikamerris.com"; + realName = "Annika Merris"; + address = "me@annikamerris.com"; + imap = { + host = "imap.porkbun.com"; + port = 993; + }; + smtp = { + host = "smtp.porkbun.com"; + port = 465; + }; + thunderbird.enable = true; + } }; programs.thunderbird = { enable = true; profiles = { adhdgirl.isDefault = true; + annikamerris_com.isDefault = false; }; }; };