diff --git a/modules/common/applications/thunderbird.nix b/modules/common/applications/thunderbird.nix index ccf6805..aba5b4e 100644 --- a/modules/common/applications/thunderbird.nix +++ b/modules/common/applications/thunderbird.nix @@ -9,20 +9,24 @@ }; }; 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} = { + accounts.email.accounts = { + adhdgirl = { + userName = ""; + realName = "Annika Merris"; + address = "annika@adhdgirl.com"; + imap = { + host = "imap.purelymail.com"; + port = 993; + }; + smtp = { + host = "smtp.purelymail.com"; + port = 465; + }; + thunderbird.enable = true; + }; + }; programs.thunderbird = { enable = true; profiles = {