diff options
Diffstat (limited to 'modules')
-rw-r--r-- | modules/home/firefox.nix | 14 |
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 { |