Thunderbird: Add extra settings.
This commit is contained in:
parent
039de66c06
commit
f3dbd3b4db
|
@ -1,10 +1,27 @@
|
||||||
{ config, lib, ... }:
|
{ __findFile, config, lib, ... }:
|
||||||
{
|
{
|
||||||
enable = true;
|
enable = true;
|
||||||
profiles.default = {
|
profiles.default = {
|
||||||
isDefault = true;
|
isDefault = true;
|
||||||
withExternalGnupg = true;
|
withExternalGnupg = true;
|
||||||
};
|
};
|
||||||
|
settings = {
|
||||||
|
"calendar.alarms.show" = true;
|
||||||
|
"calendar.alarms.soundType" = 1;
|
||||||
|
"calendar.alarms.soundURL" = "file://${<static/Notification.ogg>}";
|
||||||
|
"calendar.item.editInTab" = true;
|
||||||
|
"calendar.view.dayendhour" = 19;
|
||||||
|
"calendar.view.daystarthour" = 10;
|
||||||
|
"mailnews.start_page.enabled" = false;
|
||||||
|
"font.size.variable.x-western" = 16;
|
||||||
|
"font.minimum-size.x-western" = 16;
|
||||||
|
"font.size.monospace.x-western" = 16;
|
||||||
|
"mail.biff.use_system_alert" = true;
|
||||||
|
"pdfjs.enabledCache.state" = false;
|
||||||
|
"browser.download.useDownloadDir" = true;
|
||||||
|
"calendar.view-minimonth.showWeekNumber" = false;
|
||||||
|
"calendar.notifications.times" = "-PT2M,-PT15M,-PT60M";
|
||||||
|
};
|
||||||
|
|
||||||
# ISSUE: https://github.com/nix-community/home-manager/issues/5775
|
# ISSUE: https://github.com/nix-community/home-manager/issues/5775
|
||||||
# ISSUE: https://github.com/nix-community/home-manager/issues/5933
|
# ISSUE: https://github.com/nix-community/home-manager/issues/5933
|
||||||
|
|
Loading…
Reference in a new issue