diff options
| author | Grisha Shipunov | 2025-03-08 18:07:44 +0100 |
|---|---|---|
| committer | Grisha Shipunov | 2025-03-08 18:07:44 +0100 |
| commit | d6a77c851a5174a917976ff62f5919b478dad116 (patch) | |
| tree | 395b37bd7aafd87d5a1873a2500113e521649b6b | |
| parent | ccb39b1190201df0c91f07e9f9950e4685a9fb07 (diff) | |
disable ad stuff automatically
| -rw-r--r-- | modules/chromium.nix | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/modules/chromium.nix b/modules/chromium.nix index 6c7da2f..5c971c6 100644 --- a/modules/chromium.nix +++ b/modules/chromium.nix @@ -18,7 +18,7 @@ ]; extraOpts = { "BrowserSignin" = 0; - # "SyncDisabled" = true; + "SyncDisabled" = true; "PasswordManagerEnabled" = false; "TranslateEnabled" = false; "AutofillAddressEnabled" = false; @@ -30,6 +30,11 @@ # "DefaultSearchProviderSearchURL" = "https://google.com/search?q={searchTerms}"; "DefaultSearchProviderSearchURL" = "https://duckduckgo.com/?q={searchTerms}"; "SearchSuggestEnable" = false; + "BlockThirdPartyCookies" = true; + "PrivacySandboxAdMeasurementEnabled" = false; + "PrivacySandboxAdTopicsEnabled" = false; + "PrivacySandboxPromptEnabled" = false; + "PrivacySandboxSiteEnabledAdsEnabled" = false; }; }; } |
