From 95872744a2713d0f8781e76f4190b3ec1de5b32d Mon Sep 17 00:00:00 2001 From: Annika Merris Date: Sun, 26 May 2024 13:39:22 -0400 Subject: [PATCH] Adding an account to Thunderbird? --- modules/common/applications/thunderbird.nix | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/modules/common/applications/thunderbird.nix b/modules/common/applications/thunderbird.nix index f7d26eb..ccf6805 100644 --- a/modules/common/applications/thunderbird.nix +++ b/modules/common/applications/thunderbird.nix @@ -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; + }; }; }; };