home: refact for modular home-manager : emails and tmux
This commit is contained in:
parent
4ef4631356
commit
eef1090086
50 changed files with 220 additions and 2509 deletions
101
modules/home-manager/emails.nix
Normal file
101
modules/home-manager/emails.nix
Normal file
|
@ -0,0 +1,101 @@
|
|||
{
|
||||
accounts.email.accounts = {
|
||||
"mrflos@chmok.net" = {
|
||||
realName = "Florian Schmitt";
|
||||
userName = "mrflos@chmok.net";
|
||||
address = "mrflos@chmok.net";
|
||||
|
||||
primary = true;
|
||||
thunderbird = {
|
||||
enable = true;
|
||||
};
|
||||
imap = {
|
||||
host = "mail.infomaniak.com";
|
||||
port = 993;
|
||||
};
|
||||
|
||||
smtp = {
|
||||
host = "mail.infomaniak.com";
|
||||
port = 465;
|
||||
};
|
||||
};
|
||||
"mrflos@yeswiki.pro" = {
|
||||
realName = "Florian Schmitt - Yeswiki.pro";
|
||||
userName = "mrflos@yeswiki.pro";
|
||||
address = "mrflos@yeswiki.pro";
|
||||
|
||||
thunderbird = {
|
||||
enable = true;
|
||||
};
|
||||
imap = {
|
||||
host = "mail.infomaniak.com";
|
||||
port = 993;
|
||||
};
|
||||
|
||||
smtp = {
|
||||
host = "mail.infomaniak.com";
|
||||
port = 465;
|
||||
};
|
||||
};
|
||||
"mrflos@mrflos.pw" = {
|
||||
realName = "Florian Schmitt";
|
||||
userName = "mrflos";
|
||||
address = "mrflos@mrflos.pw";
|
||||
|
||||
primary = false;
|
||||
thunderbird = {
|
||||
enable = true;
|
||||
};
|
||||
imap = {
|
||||
host = "mrflos.pw";
|
||||
port = 993;
|
||||
#tls.enable = true;
|
||||
#tls.useStartTls = true;
|
||||
};
|
||||
|
||||
smtp = {
|
||||
host = "mrflos.pw";
|
||||
port = 587;
|
||||
#tls.useStartTls = true;
|
||||
};
|
||||
};
|
||||
"contact@yeswiki.pro" = {
|
||||
realName = "YesWiki.pro";
|
||||
userName = "contact@yeswiki.pro";
|
||||
address = "contact@yeswiki.pro";
|
||||
|
||||
primary = false;
|
||||
thunderbird = {
|
||||
enable = true;
|
||||
};
|
||||
imap = {
|
||||
host = "mail.infomaniak.com";
|
||||
port = 993;
|
||||
};
|
||||
|
||||
smtp = {
|
||||
host = "mail.infomaniak.com";
|
||||
port = 465;
|
||||
};
|
||||
};
|
||||
"contact@yeswiki.net" = {
|
||||
realName = "YesWiki.net";
|
||||
userName = "contact@yeswiki.net";
|
||||
address = "contact@yeswiki.net";
|
||||
|
||||
primary = false;
|
||||
thunderbird = {
|
||||
enable = true;
|
||||
};
|
||||
imap = {
|
||||
host = "mail.infomaniak.com";
|
||||
port = 993;
|
||||
};
|
||||
|
||||
smtp = {
|
||||
host = "mail.infomaniak.com";
|
||||
port = 465;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue