Added vps config, rearranged current one

This commit is contained in:
Lgmrszd 2024-01-12 23:09:13 +03:00
parent 8da5147ff4
commit 8b5554e732
No known key found for this signature in database
GPG key ID: 9396B8BA6FBB14DE
8 changed files with 133 additions and 26 deletions

42
hosts/laptop/email.nix Normal file
View file

@ -0,0 +1,42 @@
{
accounts.email.accounts = {
"lgm-disroot" = {
primary = true;
address = "lgmrszd@disroot.org";
userName = "lgmrszd@disroot.org";
realName = "Lgmrszd";
gpg = {
key = "D3067BE844D3FC49535A47B29396B8BA6FBB14DE";
signByDefault = true;
};
imap = {
host = "disroot.org";
port = 993;
};
smtp = {
host = "disroot.org";
port = 465;
tls.enable = true;
};
thunderbird = {
enable = true;
profiles = [
"lgmrszd"
];
};
};
"lgm-gmail" = {
address = "lgmrszd@gmail.com";
userName = "lgmrszd@gmail.com";
realName = "Lgmrszd";
flavor = "gmail.com";
thunderbird = {
enable = true;
profiles = [
"lgmrszd"
];
};
};
};
}