aboutsummaryrefslogtreecommitdiff
path: root/user/wm/librewolf.nix
diff options
context:
space:
mode:
Diffstat (limited to 'user/wm/librewolf.nix')
-rw-r--r--user/wm/librewolf.nix16
1 files changed, 16 insertions, 0 deletions
diff --git a/user/wm/librewolf.nix b/user/wm/librewolf.nix
new file mode 100644
index 0000000..a13fcc3
--- /dev/null
+++ b/user/wm/librewolf.nix
@@ -0,0 +1,16 @@
+{ config, ... }:
+{
+ programs.librewolf = {
+ enable = true;
+ profiles = {
+ default = {};
+ noRFP = {
+ id = 1;
+ name = "RFP Disabled";
+ settings = {
+ "privacy.resistFingerprinting" = false;
+ };
+ };
+ };
+ };
+}