From c192c1f2ad4ecb4058c231dc455fbfc738917bcd Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Thu, 21 Aug 2025 17:46:28 -0700 Subject: split-up firefox configuration Ensure we install the bin package, so that we can use the 1password extension (we need a signed binary for that). --- home/programs/firefox/policies.nix | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 home/programs/firefox/policies.nix (limited to 'home/programs/firefox/policies.nix') diff --git a/home/programs/firefox/policies.nix b/home/programs/firefox/policies.nix new file mode 100644 index 0000000..4fba91b --- /dev/null +++ b/home/programs/firefox/policies.nix @@ -0,0 +1,31 @@ +{ + DisablePocket = true; + DisableFirefoxStudies = true; + AppAutoUpdate = false; # Disable automatic application update + ManualAppUpdateOnly = true; # No update prompts + DontCheckDefaultBrowser = true; + + DisableTelemetry = true; + EnableTrackingProtection = { + Value = true; + Cryptomining = true; + Fingerprinting = true; + EmailTracking = true; + }; + DisableSetDesktopBackground = true; + OfferToSaveLogins = false; + OfferToSaveLoginsDefault = false; + + NoDefaultBookmarks = true; + + PasswordManagerEnabled = false; # we use 1password + + FirefoxHome = { + TopSites = false; + SponsoredTopSites = false; + Highlights = false; + Pocket = false; + SponsoredPocket = false; + Snippets = false; + }; +} -- cgit v1.2.3