mirror of
https://forgejo.merr.is/annika/nixos.git
synced 2025-12-13 09:26:41 -05:00
More Correct Email Account Config?
This commit is contained in:
parent
95872744a2
commit
7c4792a8c4
1 changed files with 16 additions and 12 deletions
|
|
@ -9,20 +9,24 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
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
|
# tktkmodtchcslyirtlgj
|
||||||
home-manager.users.${config.user} = {
|
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 = {
|
programs.thunderbird = {
|
||||||
enable = true;
|
enable = true;
|
||||||
profiles = {
|
profiles = {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue