summaryrefslogtreecommitdiff
path: root/modules/home
diff options
context:
space:
mode:
authorTim Keller <tjkeller.xyz>2024-10-20 12:46:00 -0500
committerTim Keller <tjkeller.xyz>2024-10-20 12:46:00 -0500
commit8d917a59ee6f7d4ccb2d901ae72c52d143357699 (patch)
treebe8515385c03ed30283f023a215feda4ca20da24 /modules/home
parentcde90c250dc193ef683cd84614815fdbd848598c (diff)
downloadnixos-8d917a59ee6f7d4ccb2d901ae72c52d143357699.tar.xz
nixos-8d917a59ee6f7d4ccb2d901ae72c52d143357699.zip
update firefox config, reorganize it
Diffstat (limited to 'modules/home')
-rw-r--r--modules/home/firefox.nix14
1 files changed, 9 insertions, 5 deletions
diff --git a/modules/home/firefox.nix b/modules/home/firefox.nix
index db507a8..a55708a 100644
--- a/modules/home/firefox.nix
+++ b/modules/home/firefox.nix
@@ -27,17 +27,21 @@
"2800"."2811"."privacy.clearOnShutdown.history".enable = false;
};
settings = {
- "toolkit.legacyUserProfileCustomizations.stylesheets" = true;
"browser.compactmode.show" = true;
+ "browser.uiCustomization.state" = builtins.readFile ./resources/firefox/uiCustomization.json; # Toolbar etc.
"browser.uidensity" = 1; # Compact
- "browser.download.dir" = userDetails.home.downloads; # FF will create this dir if it doesn't exist
- "browser.aboutConfig.showWarning" = false; # arkenfox does
+ "toolkit.legacyUserProfileCustomizations.stylesheets" = true; # userchrome
+
"app.normandy.first_run" = false;
- "browser.uiCustomization.state" = builtins.readFile ./resources/firefox/uiCustomization.json; # Toolbar etc.
+ "browser.aboutConfig.showWarning" = false; # arkenfox does
+ "browser.download.dir" = userDetails.home.downloads; # FF will create this dir if it doesn't exist
"browser.newtabpage.activity-stream.feeds.section.topstories" = false;
"browser.newtabpage.activity-stream.feeds.topsites" = false;
- "general.smoothScroll" = false;
+ "browser.urlbar.suggest.topsites" = false;
"devtools.toolbox.host" = "window";
+ "dom.push.enabled" = false; #
+ "extensions.pocket.enabled" = false;
+ "general.smoothScroll" = false;
#identity.fxaccounts.account.device.name = "timmy’s Firefox on nixos"; # HOSTNAME
};
in {