feat: mail accounts

This commit is contained in:
Patrick 2024-01-30 21:33:01 +01:00
parent 92239cdeef
commit 18b25c59c0
Signed by: patrick
GPG key ID: 451F95EFB8BECD0F
2 changed files with 12 additions and 1 deletions

View file

@ -1,4 +1,15 @@
{pkgs, ...}: { {
config,
lib,
...
}: {
accounts.email.accounts = lib.flip lib.mapAttrs' config.userSecrets.accounts.email (
_: v:
lib.nameValuePair v.address (lib.recursiveUpdate v {
thunderbird.enable = true;
thunderbird.profiles = ["personal"];
})
);
programs.thunderbird = { programs.thunderbird = {
enable = true; enable = true;

Binary file not shown.