⬆️ (home) replace librewolf by vanilla firefox

This commit is contained in:
Laureηt 2024-03-31 16:07:34 +02:00
parent 889c22fe02
commit 6e7c6ebfb8
Signed by: Laurent
SSH key fingerprint: SHA256:pb5NrYg80So5z9hmqQFPmp//sgr+DFeJkKhmGyU2NLk

View file

@ -1,14 +1,16 @@
{...}: {
programs.librewolf = {
programs.firefox = {
enable = true;
settings = {
"privacy.clearOnShutdown.history" = false;
"privacy.clearOnShutdown.downloads" = false;
"privacy.donottrackheader.enabled" = true;
"browser.ctrlTab.sortByRecentlyUsed" = true; # change Ctrl+Tab behaviour
"general.autoScroll" = true;
"pdfjs.viewerCssTheme" = 2; # dark theme for pdf viewer
"browser.startup.page" = 3; # always restore tabs
profiles = {
laurent = {
isDefault = true;
settings = {
"browser.startup.page" = 3; # always restore tabs
"privacy.donottrackheader.enabled" = true;
"browser.ctrlTab.sortByRecentlyUsed" = true; # change Ctrl+Tab behaviour
"general.autoScroll" = true;
};
};
};
};
}