diff options
author | tilpner | 2020-03-06 16:05:01 +0100 |
---|---|---|
committer | tilpner | 2020-03-06 16:05:01 +0100 |
commit | 5014c0ed2160393fb787b585127bce8f27fda722 (patch) | |
tree | b01c547725982c5ed866683c1b865381736653f8 /profiles/noLocation.nix | |
parent | edd25555261c17f74580245b8305cf7edefa4267 (diff) | |
download | firefox-profiles-5014c0ed2160393fb787b585127bce8f27fda722.tar.gz firefox-profiles-5014c0ed2160393fb787b585127bce8f27fda722.tar.xz firefox-profiles-5014c0ed2160393fb787b585127bce8f27fda722.zip |
Separate policy into smaller modules
Diffstat (limited to 'profiles/noLocation.nix')
-rw-r--r-- | profiles/noLocation.nix | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/profiles/noLocation.nix b/profiles/noLocation.nix new file mode 100644 index 0000000..7b05a98 --- /dev/null +++ b/profiles/noLocation.nix @@ -0,0 +1,12 @@ +{ ffLib }: { + policies = { + Permissions.Location = { + BlockNewRequests = true; + Locked = true; + }; + + Preferences = ffLib.flattenAttrs { + geo.enabled = false; + }; + }; +} |