From cad6318736d33029f186f26ce0980d70b741b029 Mon Sep 17 00:00:00 2001 From: aszlig Date: Fri, 2 Feb 2024 12:12:05 +0100 Subject: firefox: Enable Global Privacy Control This was introduced in Firefox 120.0 and essentially implements the following specification: https://privacycg.github.io/gpc-spec/ Similar to Do-Not-Track, it implements a header (Sec-GPC) that expresses the persons preference to the site of whether the site may sell/share the browsers interaction. Since Do-Not-Track pretty much is ignored on most sites that formerly adhered to it, I expect a similar fate for GPC, but maybe this time things work out differently (crossing fingers). Signed-off-by: aszlig --- pkgs/aszlig/firefox/default.nix | 1 + 1 file changed, 1 insertion(+) (limited to 'pkgs') diff --git a/pkgs/aszlig/firefox/default.nix b/pkgs/aszlig/firefox/default.nix index fdad8cda..5ab581cb 100644 --- a/pkgs/aszlig/firefox/default.nix +++ b/pkgs/aszlig/firefox/default.nix @@ -88,6 +88,7 @@ in wrapFirefox firefoxNoSigning { lockPref('network.captive-portal-service.enabled', false); lockPref('network.connectivity-service.enabled', false); lockPref('privacy.donottrackheader.enabled', true); + lockPref('privacy.globalprivacycontrol.enabled', true); lockPref('privacy.query_stripping.enabled', true); lockPref('privacy.query_stripping.enabled.pbmode', true); lockPref('privacy.query_stripping.strip_list', '${toString [ -- cgit 1.4.1