mirror of
https://git.lgmrszd.xyz/Lgmrszd/nix-cfg.git
synced 2025-12-15 16:18:18 +01:00
Move home-manager config to subdir
This commit is contained in:
parent
9f4c4b396a
commit
95ce7a0555
3 changed files with 1 additions and 1 deletions
72
hosts/laptop/home/email.nix
Normal file
72
hosts/laptop/home/email.nix
Normal file
|
|
@ -0,0 +1,72 @@
|
|||
{
|
||||
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;
|
||||
tls.enable = true;
|
||||
};
|
||||
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"
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
"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…
Add table
Add a link
Reference in a new issue