feat: mail accounts
This commit is contained in:
parent
92239cdeef
commit
18b25c59c0
|
@ -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.
Loading…
Reference in a new issue