aly/thunderbird: allow remote content

This commit is contained in:
Aly Raffauf 2024-07-02 14:44:02 -04:00
parent a33c6f8bdb
commit 080eb89a78

View file

@ -88,9 +88,14 @@ in {
thunderbird = {
enable = true;
profiles = {
default.isDefault = true;
work = {};
profiles = let
settings = {"mailnews.message_display.disable_remote_image" = false;};
in {
default = {
inherit settings;
isDefault = true;
};
work = {inherit settings;};
};
};
};