55 lines
1.1 KiB
Nix
55 lines
1.1 KiB
Nix
{config, lib, pkgs, sops, ...}: {
|
|
|
|
home-manager.users.mysaa.accounts.email.accounts = {
|
|
|
|
hadoly = {
|
|
realName = "Mysaa Java";
|
|
address = "mysaa@hadoly.fr";
|
|
imap = {
|
|
host = "imap.hadoly.fr";
|
|
port = 993;
|
|
tls.enable = true;
|
|
};
|
|
smtp = {
|
|
host = "smtp.hadoly.fr";
|
|
port = 443;
|
|
tls.enable = true;
|
|
};
|
|
primary = true;
|
|
userName = "mysaa@hadoly.fr";
|
|
passwordCommand = ''cat /run/secrets/pass/hadoly_password'';
|
|
};
|
|
|
|
ens = {
|
|
address = "samy.avrillon@ens-lyon.fr";
|
|
};
|
|
|
|
personal = {
|
|
address = "samyavrillon@netcourrier.com";
|
|
realName = "Samy Avrillon";
|
|
imap = {
|
|
host = "mail.mailo.com";
|
|
port = 993;
|
|
tls.enable = true;
|
|
};
|
|
smtp = {
|
|
host = "mail.mailo.com";
|
|
port = 443;
|
|
tls.enable = true;
|
|
};
|
|
userName = "samyavrillon@netcourrier.com";
|
|
passwordCommand = ''cat /run/secrets/pass/netcourrier_password'';
|
|
};
|
|
|
|
junk = {
|
|
address = "qqnavrillon@netcourrier.com";
|
|
};
|
|
|
|
google = {
|
|
address = "samsouleavr@gmail.com";
|
|
};
|
|
|
|
};
|
|
|
|
}
|