aboutsummaryrefslogtreecommitdiff
path: root/profiles/noSafebrowsing.nix
diff options
context:
space:
mode:
Diffstat (limited to 'profiles/noSafebrowsing.nix')
-rw-r--r--profiles/noSafebrowsing.nix10
1 files changed, 10 insertions, 0 deletions
diff --git a/profiles/noSafebrowsing.nix b/profiles/noSafebrowsing.nix
new file mode 100644
index 0000000..bd53006
--- /dev/null
+++ b/profiles/noSafebrowsing.nix
@@ -0,0 +1,10 @@
+{ ffLib }: {
+ preferences = {
+ browser.safebrowsing = {
+ phishing.enabled = false;
+ malware.enabled = false;
+ downloads.enabled = false;
+ downloads.remote.enabled = false;
+ };
+ };
+}