aboutsummaryrefslogtreecommitdiff
path: root/profiles/noPocket.nix
blob: 7582fd67016e055880cbb3be0fb1512cd3a21e14 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ ffLib }: {
  meta.description = ''
    Pocket allows saving sites to an external services.
    For some reason, it has been integrated into Firefox directly,
    instead of being offered as an extension.
  '';

  policies = {
    DisablePocket = true;
  };

  preferences = {
    extensions.pocket.enabled = false;
  };
}