aboutsummaryrefslogtreecommitdiff
path: root/user/wm/librewolf.nix
diff options
context:
space:
mode:
authorRosa <rosaontheweb@proton.me>2025-12-20 13:16:20 -0500
committerRosa <rosaontheweb@proton.me>2025-12-20 13:30:34 -0500
commitca9e1f1fb8126b34ca95fca78965c1d782a30102 (patch)
tree65b8e7e9125e3c9f2f4c72e15afa47fb6fe8c8ec /user/wm/librewolf.nix
init
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;
+ };
+ };
+ };
+ };
+}