laptop: home-manager: add personal email

This commit is contained in:
Lgmrszd 2024-05-20 23:48:48 +03:00
parent 0395c9903e
commit 89c12bba9f
No known key found for this signature in database
GPG key ID: 9396B8BA6FBB14DE

View file

@ -12,6 +12,7 @@
imap = {
host = "disroot.org";
port = 993;
tls.enable = true;
};
smtp = {
host = "disroot.org";
@ -38,5 +39,34 @@
];
};
};
"lgm@lgmrszd.xyz" = {
address = "lgm@lgmrszd.xyz";
aliases = [
"lgmrszd@$lgmrszd.xyz"
"postmaster@$lgmrszd.xyz"
"abuse@$lgmrszd.xyz"
"admin@$lgmrszd.xyz"
];
userName = "lgm@lgmrszd.xyz";
realName = "Lgmrszd";
flavor = "plain";
imap = {
host = "mail.lgmrszd.xyz";
port = 993;
tls.enable = true;
};
smtp = {
host = "mail.lgmrszd.xyz";
port = 465;
tls.enable = true;
};
thunderbird = {
enable = true;
profiles = [
"lgmrszd"
];
};
};
};
}