From 0f472179ea1aaab0ab68a109c34fd78b25642422 Mon Sep 17 00:00:00 2001 From: Ryan Schanzenbacher Date: Mon, 24 Aug 2026 01:09:26 -0400 Subject: migration to mostly nix --- home-config/nix-home-manager/zenPolicies.nix | 124 --------------------------- 1 file changed, 124 deletions(-) delete mode 100644 home-config/nix-home-manager/zenPolicies.nix (limited to 'home-config/nix-home-manager/zenPolicies.nix') diff --git a/home-config/nix-home-manager/zenPolicies.nix b/home-config/nix-home-manager/zenPolicies.nix deleted file mode 100644 index 902ea19..0000000 --- a/home-config/nix-home-manager/zenPolicies.nix +++ /dev/null @@ -1,124 +0,0 @@ -let - lock-false = { - Value = false; - Status = "locked"; - }; - lock-true = { - Value = true; - Status = "locked"; - }; -in -{ - EnableTrackingProtection = { - Value = true; - Locked = true; - Cryptomining = true; - Fingerprinting = true; - EmailTracking = true; - }; - UserMessaging = { - WhatsNew = false; - ExtensionRecommendations = false; - FeatureRecommendations = false; - UrlbarInterventions = false; - SkipOnboarding = true; - MoreFromMozilla = false; - Labs = false; - Locked = true; - }; - DisableAppUpdate = true; - DisableAccounts = true; - DisableFirefoxAccounts = true; - DisableFirefoxStudies = true; - DisablePocket = true; - DisableTelemetry = true; - AutofillAddressEnabled = false; - AutofillCreditCardEnabled = false; - DisableMasterPasswordCreation = true; - PasswordManagerEnabled = false; - PrimaryPassword = false; - OfferToSaveLogins = false; - NoDefaultBookmarks = true; - OverrideFirstRunPage = ""; - OverridePostUpdatePage = ""; - FirefoxHome = { - Search = true; - TopSites = true; - SponsoredTopSites = false; - Highlights = false; - Pocket = false; - SponsoredPocket = false; - Snippets = false; - Locked = true; - }; - SearchSuggestEnabled = true; - FirefoxSuggest = { - WebSuggestions = true; - SponsoredSuggestions = false; - ImproveSuggest = false; - Locked = true; - }; - PictureInPicture = lock-true; - HardwareAcceleration = true; - Certificates = { - ImportEnterpriseRoots = true; - }; - ExtensionSettings = { - #"*".installation_mode = "blocked"; - # uBlock Origin - "uBlock0@raymondhill.net" = { - install_url = "https://addons.mozilla.org/firefox/downloads/latest/ublock-origin/latest.xpi"; - installation_mode = "force_installed"; - }; - # Bitwarden - "{446900e4-71c2-419f-a6a7-df9c091e268b}" = { - install_url = "https://addons.mozilla.org/firefox/downloads/latest/bitwarden-password-manager/latest.xpi"; - installation_mode = "normal_installed"; - }; - # SponsorBlock - "sponsorBlocker@ajay.app" = { - install_url = "https://addons.mozilla.org/firefox/downloads/latest/sponsorblock/latest.xpi"; - installation_mode = "force_installed"; - }; - # DeArrow - "deArrow@ajay.app" = { - install_url = "https://addons.mozilla.org/firefox/downloads/latest/dearrow/latest.xpi"; - installation_mode = "force_installed"; - }; - # Return Youtube Dislike - "{762f9885-5a13-4abd-9c77-433dcd38b8fd}" = { - install_url = "https://addons.mozilla.org/firefox/downloads/latest/return-youtube-dislikes/latest.xpi"; - installation_mode = "force_installed"; - }; - # Youtube Nonstop - "{0d7cafdd-501c-49ca-8ebb-e3341caaa55e}" = { - install_url = "https://addons.mozilla.org/firefox/downloads/latest/youtube-nonstop/latest.xpi"; - installation_mode = "force_installed"; - }; - # TamperMonkey - "firefox@tampermonkey.net" = { - install_url = "https://addons.mozilla.org/firefox/downloads/latest/tampermonkey/latest.xpi"; - installation_mode = "force_installed"; - }; - # Floccus - "floccus@handmadeideas.org" = { - install_url = "https://addons.mozilla.org/firefox/downloads/latest/floccus/latest.xpi"; - installation_mode = "force_installed"; - }; - # Mailvelope - "jid1-AQqSMBYb0a8ADg@jetpack" = { - install_url = "https://addons.mozilla.org/firefox/downloads/latest/mailvelope/latest.xpi"; - installation_mode = "force_installed"; - }; - }; - Preferences = { - "xpinstall.whitelist.required" = lock-true; - "dom.webgpu.enabled" = lock-true; - "media.eme.enabled" = lock-true; - "general.autoScroll" = lock-true; - "general.smoothScroll" = lock-true; - "browser.crashReports.unsubmittedCheck.autoSubmit2" = lock-false; - "browser.aboutConfig.showWarning" = lock-false; - "media.videocontrols.picture-in-picture.enable-when-switching-tabs.enabled" = lock-true; - }; -} -- cgit v1.3.1