From b6b9ff9ac15be0d66d4771d1164fbd5622851fff Mon Sep 17 00:00:00 2001 From: mjallen18 Date: Mon, 10 Mar 2025 20:21:52 -0500 Subject: [PATCH] more librewolf settings for usability --- hosts/desktop/home.nix | 28 ++++++++++++++++++++++++++-- 1 file changed, 26 insertions(+), 2 deletions(-) diff --git a/hosts/desktop/home.nix b/hosts/desktop/home.nix index c42444e..dca141f 100755 --- a/hosts/desktop/home.nix +++ b/hosts/desktop/home.nix @@ -52,8 +52,32 @@ in enable = true; settings = { "identity.fxaccounts.enabled" = true; # Enable Firefox Accounts - "privacy.clearOnShutdown.history" = true; # Disable clearing history on shutdown - "privacy.clearOnShutdown.downloads" = true; # Disable clearing downloads on shutdown + "privacy.clearOnShutdown.history" = false; # Disable clearing history on shutdown + "privacy.clearOnShutdown.downloads" = false; # Disable clearing downloads on shutdown + "privacy.clearOnShutdown.cache" = false; # Disable clearing cache on shutdown + "privacy.clearOnShutdown.cookiesAndStorage" = false; # Disable clearing cookies and storage on shutdown + "privacy.clearOnShutdown_v2.cache" = false; # Disable clearing cache on shutdown + "privacy.clearOnShutdown_v2.cookiesAndStorage" = false; # Disable clearing cookies and storage on shutdown + "privacy.clearOnShutdown.formdata" = false; # Disable clearing form data on shutdown + "privacy.clearOnShutdown.offlineApps" = false; # Disable clearing offline apps on shutdown + "privacy.clearHistory.cache" = false; # Disable clearing cache on history clear + "privacy.clearHistory.cookiesAndStorage" = false; # Disable clearing cookies on history clear + "privacy.clearHistory.historyFormDataAndDownloads" = false; # Disable clearing history, form data, and downloads on history clear + "privacy.clearSiteData.cache" = false; # Disable clearing cache on site data clear + "privacy.clearSiteData.cookiesAndStorage" = false; # Disable clearing cookies on site data clear + "services.sync.prefs.sync.privacy.clearOnShutdown.cache" = true; # Disable syncing cache clear on shutdown + "services.sync.prefs.sync.privacy.clearOnShutdown.cookies" = true; # Disable syncing cookies clear on shutdown + "services.sync.prefs.sync.privacy.clearOnShutdown.downloads" = true; # Disable syncing downloads clear on shutdown + "services.sync.prefs.sync.privacy.clearOnShutdown.formdata" = true; # Disable syncing form data clear on shutdown + "services.sync.prefs.sync.privacy.clearOnShutdown.history" = true; # Disable syncing history clear on shutdown + "services.sync.prefs.sync.privacy.clearOnShutdown.offlineApps" = true; # Disable syncing offline apps clear on shutdown + "services.sync.prefs.sync.privacy.clearOnShutdown.sessions" = true; # Disable syncing sessions clear on shutdown + "services.sync.prefs.sync.privacy.clearOnShutdown.siteSettings" = true; # Disable syncing site settings clear on shutdown + "services.sync.prefs.sync.privacy.clearOnShutdown_v2.cache" = true; # Disable syncing cache clear on shutdown + "services.sync.prefs.sync.privacy.clearOnShutdown_v2.cookiesAndStorage" = true; # Disable syncing cookies clear on shutdown + "services.sync.prefs.sync.privacy.clearOnShutdown_v2.downloads" = true; # Disable syncing downloads clear on shutdown + "services.sync.prefs.sync.privacy.clearOnShutdown_v2.historyFormDataAndDownloads" = true; # Disable syncing form data clear on shutdown + "services.sync.prefs.sync.privacy.clearOnShutdown_v2.siteSettings" = true; # Disable syncing site settings clear on shutdown }; }; };