From d562dab25ff72b4589996208d29bc9fe1753d289 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 21 Apr 2026 20:29:23 +0200 Subject: [PATCH] Thunderbird um weiteres Postfach erweitert --- home.nix | 32 ++++++++++++++++++++------------ 1 file changed, 20 insertions(+), 12 deletions(-) diff --git a/home.nix b/home.nix index fc95076..8b6e70a 100755 --- a/home.nix +++ b/home.nix @@ -18,6 +18,13 @@ home.username = "martin"; home.homeDirectory = "/home/martin"; + programs.thunderbird = { + enable = true; + profiles.default = { + isDefault = true; + }; + }; + # 1. Die allgemeine E-Mail-Konfiguration accounts.email.accounts = { "Privat" = { @@ -32,20 +39,21 @@ # Hier sagst du Home Manager, dass dieses Konto in Thunderbird erscheinen soll thunderbird.enable = true; - thunderbird.profiles = [ "default" ]; }; + "martin" = { + address = "martin@dukebase.de"; + realName = "Martin Haitz"; + userName = "martin@dukebase.de"; + 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; }; - 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 # introduces backwards incompatible changes. #