mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 09:13:55 -05:00
aly/thunderbird: allow remote content
This commit is contained in:
parent
a33c6f8bdb
commit
080eb89a78
|
@ -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;};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue