From fc0b5902b99f00eff66786d155c6a720446d6584 Mon Sep 17 00:00:00 2001 From: Simon Bruder Date: Sun, 30 Apr 2023 19:13:31 +0200 Subject: [PATCH] mail: Temporarily switch to Thunderbird MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit After much struggle with all clients known to me, I now use Thunderbird. I might not keep using it for a longer time, so I kept the old configuration and disabled it, so it can be reused at a later time. Because Thunderbird doesn’t support nice declarative configuration, I don’t see much sense in configuring the accounts declaratively, when the settings for the accounts (which is much more) have to be configured manually. --- users/simon/modules/git.nix | 2 +- users/simon/modules/mail/default.nix | 11 ++++++++--- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/users/simon/modules/git.nix b/users/simon/modules/git.nix index 9717d4f..52d1e20 100644 --- a/users/simon/modules/git.nix +++ b/users/simon/modules/git.nix @@ -75,7 +75,7 @@ (condition: { inherit condition; contents = { - user.email = config.accounts.email.accounts.tu-dresden.address; + user.email = "simon.bruder@mailbox.tu-dresden.de"; }; }) [ diff --git a/users/simon/modules/mail/default.nix b/users/simon/modules/mail/default.nix index 4fbe889..86e2faf 100644 --- a/users/simon/modules/mail/default.nix +++ b/users/simon/modules/mail/default.nix @@ -1,7 +1,12 @@ +{ pkgs, ... }: { imports = [ - ./accounts.nix - ./aerc - ./notmuch.nix + #./accounts.nix + #./aerc + #./notmuch.nix + ]; + + home.packages = with pkgs; [ + thunderbird ]; }