mirror of
https://git.lgmrszd.xyz/Lgmrszd/nix-cfg.git
synced 2025-12-17 08:58:19 +01:00
Added vps config, rearranged current one
This commit is contained in:
parent
8da5147ff4
commit
8b5554e732
8 changed files with 133 additions and 26 deletions
42
hosts/laptop/email.nix
Normal file
42
hosts/laptop/email.nix
Normal 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"
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue