aboutsummaryrefslogtreecommitdiff
path: root/profiles/trackingprotection.nix
blob: f729df2fc4521cf7ca0f4444daacefd2a5a40584 (plain)
1
2
3
4
5
6
7
{ config, lib, ... }: {
  options.trackingProtection.disableAll =
    lib.mkEnableOption "Disable all inbuilt tracking protection";

  config.preferences.browser.contentblocking.enabled =
    lib.mkIf config.trackingProtection.disableAll false;
}