mirror of
https://git.lgmrszd.xyz/Lgmrszd/nix-cfg.git
synced 2024-11-09 21:38:34 +01:00
laptop: home-manager: add personal email
This commit is contained in:
parent
0395c9903e
commit
89c12bba9f
1 changed files with 30 additions and 0 deletions
|
@ -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"
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue