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

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

    FlashPlugin.Default = false;
  };

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