aboutsummaryrefslogtreecommitdiff
path: root/profiles/noLocation.nix
blob: 7b05a98bd7134fb3740ce093d57b22281ca85d36 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{ ffLib }: {
  policies = {
    Permissions.Location = {
      BlockNewRequests = true;
      Locked = true;
    };

    Preferences = ffLib.flattenAttrs {
      geo.enabled = false;
    };
  };
}