katja's git: nixfiles

ctucx' nixfiles

commit d547c17c87555ba5e9b3f26e1fef1d63b7a4ebb9
parent 6c192f1422fcfd7cbcb599295e411afa2bb50f1e
Author: Katja (ctucx) <git@ctu.cx>
Date: Sun, 27 Apr 2025 23:05:20 +0200

configurations/homeManager/programs/firefox: add some policies
1 file changed, 7 insertions(+), 2 deletions(-)
diff --git a/configurations/homeManager/programs/firefox.nix b/configurations/homeManager/programs/firefox.nix
@@ -61,9 +61,13 @@
     };
 
     policies = {
+      DisableSetDesktopBackground = true;
+
       # disable tracking bullshit
-      DisableTelemetry       = true;
-      DisablePocket          = true;
+      DisableTelemetry        = true;
+      DisablePocket           = true;
+      DisableFirefoxStudies   = true;
+      DisableFeedbackCommands = true;
 
       # disable password manager
       PasswordManagerEnabled    = false;

@@ -74,6 +78,7 @@
       # disable bookmark-toolbar
       NoDefaultBookmarks      = true;
       DisplayBookmarksToolbar = "never";
+      DisplayMenuBar          = "default-off";
 
       Homepage.StartPage = "previous-session";
       Homepage.Locked    = true;