From 6e27f565a62f4639b7695b17d568a4b572503aa7 Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Tue, 30 Jan 2024 08:04:37 +0000 Subject: [PATCH] chromium: clear browsing data on exit --- system/chromium.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/system/chromium.nix b/system/chromium.nix index cc4d1086..c6e7a4da 100644 --- a/system/chromium.nix +++ b/system/chromium.nix @@ -10,6 +10,16 @@ ]; extraOpts = { "BrowserSignin" = 0; + "ClearBrowsingDataOnExitList" = [ + "browsing_history" + "download_history" + "cookies_and_other_site_data" + "cached_images_and_files" + "password_signin" + "autofill" + "site_settings" + "hosted_app_data" + ]; "DefaultBrowserSettingEnabled" = false; "DeviceAutoUpdateDisabled" = true; "SyncDisabled" = true;