1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 10:11:08 +01:00

feat: thunderbird

This commit is contained in:
2023-09-28 17:54:20 +02:00
parent 73ce1bc4b5
commit 3c5246b159
3 changed files with 27 additions and 3 deletions

View File

@@ -4,7 +4,7 @@
lib,
...
}: let
inherit (import ../lib/email.nix) defaults;
inherit (import ../lib/email.nix) defaults thunderbirdProfile;
in {
age.secrets = {
email-password-cock = {
@@ -96,6 +96,26 @@ in {
# programs.himalaya.enable = true;
programs.thunderbird = {
enable = true;
settings = {
};
profiles.${thunderbirdProfile} = {
isDefault = true;
settings = {
"mail.default_send_format" = 1;
"msgcompose.default_colors" = false;
"msgcompose.text_color" = config.lib.stylix.colors.withHashtag.base00;
"msgcompose.background_color" = config.lib.stylix.colors.withHashtag.base05;
};
userChrome = ''
'';
userContent = ''
'';
withExternalGnupg = false;
};
};
programs.aerc = {
enable = true;

View File

@@ -1,7 +1,6 @@
{
config,
pkgs,
lib,
...
}: let
davHome = "~/.local/share/dav";