diff options
| author | Franck Cuny <fcuny@roblox.com> | 2025-08-21 17:46:28 -0700 |
|---|---|---|
| committer | Franck Cuny <fcuny@roblox.com> | 2025-08-21 17:46:28 -0700 |
| commit | c192c1f2ad4ecb4058c231dc455fbfc738917bcd (patch) | |
| tree | f5b3b97fa407b82bd983677c73fbb801be8389f6 /home/programs/firefox.nix | |
| parent | initial configuration for firefox (diff) | |
| download | infra-c192c1f2ad4ecb4058c231dc455fbfc738917bcd.tar.gz | |
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).
Diffstat (limited to 'home/programs/firefox.nix')
| -rw-r--r-- | home/programs/firefox.nix | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/home/programs/firefox.nix b/home/programs/firefox.nix deleted file mode 100644 index 5733aa4..0000000 --- a/home/programs/firefox.nix +++ /dev/null @@ -1,45 +0,0 @@ -{ pkgs, inputs, ... }: -{ - programs.firefox = { - enable = true; - policies = { - DisablePocket = true; - AppAutoUpdate = false; # managed by nix - DontCheckDefaultBrowser = true; - DisableTelemetry = true; - EnableTrackingProtection = { - Value = true; - Cryptomining = true; - Fingerprinting = true; - EmailTracking = true; - }; - DisableSetDesktopBackground = true; - OfferToSaveLogins = false; - PasswordManagerEnabled = false; - FirefoxHome = { - TopSites = false; - SponsoredTopSites = false; - Highlights = false; - Pocket = false; - SponsoredPocket = false; - Snippets = false; - }; - }; - profiles = { - franck = { - isDefault = true; - settings = { - "browser.tabs.groups.enabled" = true; - "browser.urlbar.trimURLs" = false; # show the complete URL - "sidebar.revamp" = true; - "sidebar.revamp.round-content-area" = true; - "sidebar.verticalTabs" = true; # vertical tabs - }; - extensions = with inputs.firefox-addons.packages.${pkgs.system}; [ - sponsorblock - ublock-origin - ]; - }; - }; - }; -} |
