Move home-manager configurations files

This commit is contained in:
Yorick Barbanneau 2023-09-10 15:53:24 +02:00
parent 9715b9569a
commit 1650bdc29b
37 changed files with 8 additions and 8 deletions

View file

@ -0,0 +1,28 @@
{
"browser.sessionstore.enabled" = true;
"browser.sessionstore.restore_hidden_tabs" = true;
"browser.sessionstore.restore_pinned_tabs_on_demand" = true;
"browser.sessionstore.resume_after_os_start" = true;
# use blank page for new tabs
"browser.newtabpage.enabled" = false;
# Disable preloading of the new tab page.
# By default Firefox preloads the new tab page (with website thumbnails) in the
# background before it is even opened.
"browser.newtab.preload" = false;
# Disable check for captive portal.
# By default, Firefox checks for the presence of a captive portal on every
# startup. This involves traffic to Akamai
# (https://support.mozilla.org/questions/1169302).
"network.captive-portal-service.enabled" = false;
# Disable Javascript in PDF viewer
# Disables executing of JavaScript in the PDF form viewer. It is possible that
# some PDFs are not rendered correctly due to missing functions.
"pdfjs.enableScripting" = true;
}