Einrichtung Thunderbird deklarativ

This commit is contained in:
2026-04-16 16:33:37 +02:00
parent 2c81a6e968
commit 38a6a91733
+27
View File
@@ -18,6 +18,33 @@
home.username = "martin"; home.username = "martin";
home.homeDirectory = "/home/martin"; home.homeDirectory = "/home/martin";
# 1. Die allgemeine E-Mail-Konfiguration
accounts.email.accounts = {
"Privat" = {
primary = true;
address = "mail@martin-haitz.com";
realName = "Martin Haitz";
userName = "mail@martin-haitz.com";
imap.host = "imap.dukebase.de";
imap.port = 993;
smtp.host = "smtp.dukebase.de";
smtp.port = 465;
# Hier sagst du Home Manager, dass dieses Konto in Thunderbird erscheinen soll
thunderbird.enable = true;
thunderbird.profiles = [ "default" ];
};
};
programs.thunderbird = {
enable = true;
profiles.default = {
isDefault = true;
settings = {
"mail.identity.default.suppress_signature_separation" = true; # Entfernt "--" vor Signatur
"intl.accept_languages" = "de-DE, en-US";
};
};
};
# This value determines the Home Manager release that your configuration is # This value determines the Home Manager release that your configuration is
# compatible with. This helps avoid breakage when a new Home Manager release # compatible with. This helps avoid breakage when a new Home Manager release
# introduces backwards incompatible changes. # introduces backwards incompatible changes.