mirror of
https://forgejo.merr.is/annika/nixos.git
synced 2025-12-12 11:35:41 -05:00
Adding an account to Thunderbird?
This commit is contained in:
parent
fcded54d58
commit
95872744a2
1 changed files with 16 additions and 0 deletions
|
|
@ -9,9 +9,25 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
config = lib.mkIf (config.gui.enable && config.thunderbird.enable) {
|
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} = {
|
home-manager.users.${config.user} = {
|
||||||
programs.thunderbird = {
|
programs.thunderbird = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
profiles = {
|
||||||
|
adhdgirl.isDefault = true;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue