Files
nixos-config/home/programs/thunderbird.nix
Elias Schröter f615c1694e KJR
remove KJR Mail
2026-03-25 18:41:44 +01:00

82 lines
1.8 KiB
Nix

{ ... }:
{
programs.thunderbird = {
enable = true;
profiles = {
privat.isDefault = true;
kjr.isDefault = false;
uni.isDefault = false;
};
settings = { };
};
accounts.email = {
accounts = {
privat = {
address = "elias.schroeter@e.email";
aliases = [
"elias.schroeter@murena.io"
"xacufe67.cadome83@murena.io"
];
imap = {
host = "mail.ecloud.global";
port = 993;
tls.enable = true;
};
realName = "Elias Schröter";
signature = {
text = ''
Mit freundlichen Grüßen,
Elias Schröter.
'';
showSignature = "append";
};
passwordCommand = "mail-password";
smtp = {
host = "mail.ecloud.global";
port = 587;
tls = {
enable = true;
useStartTls = true;
};
};
userName = "elias.schroeter@e.email";
primary = true;
thunderbird = {
enable = true;
};
};
uni = {
address = "elias.schroeter@campus.lmu.de";
imap = {
host = "studlmu.lrz.de";
port = 993;
tls.enable = true;
};
realName = "Elias Schröter";
signature = {
text = ''
Mit freundlichen Grüßen,
Elias Schröter.
'';
showSignature = "append";
};
passwordCommand = "mail-password";
smtp = {
host = "postout.lrz.de";
port = 587;
tls = {
enable = true;
useStartTls = true;
};
};
userName = "elias.schroeter@campus.lmu.de";
primary = false;
thunderbird = {
enable = true;
};
};
};
};
}