aboutsummaryrefslogtreecommitdiff
path: root/profiles/defaults.nix
blob: 9931452f8bf0cc64780d17ba3911d46bcc8cfce6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ ff, ... }: {
  policies = {
    /*EnableTrackingProtection = {
      Cryptomining = true;
      Fingerprinting = true;
      Value = true;
    };*/

    EnableTrackingProtection = {
      Cryptomining = false;
      Fingerprinting = false;
      Value = false;
    };

    FlashPlugin.Default = false;
  };

  preferences = {
    network.IDN_show_punycode = true;
  };
}