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, lib,
... ...
}: let }: let
inherit (import ../lib/email.nix) defaults; inherit (import ../lib/email.nix) defaults thunderbirdProfile;
in { in {
age.secrets = { age.secrets = {
email-password-cock = { email-password-cock = {
@@ -96,6 +96,26 @@ in {
# programs.himalaya.enable = true; # 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 = { programs.aerc = {
enable = true; enable = true;

View File

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

View File

@@ -1,5 +1,10 @@
{ rec {
thunderbirdProfile = "donnervogel";
defaults = { defaults = {
thunderbird = {
enable = true;
profiles = [thunderbirdProfile];
};
aerc.enable = true; aerc.enable = true;
realName = "Kierán Meinhardt"; realName = "Kierán Meinhardt";
folders.inbox = "INBOX"; folders.inbox = "INBOX";