From 2cd8eabdda3f0730564d67db64ae23135ae46030 Mon Sep 17 00:00:00 2001 From: Alexander Heldt Date: Sat, 9 Sep 2023 10:01:45 +0200 Subject: [PATCH] pinwheel: Disable autoscroll in `firefox` --- hosts/pinwheel/modules/firefox/default.nix | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/hosts/pinwheel/modules/firefox/default.nix b/hosts/pinwheel/modules/firefox/default.nix index e641315..9021ff1 100644 --- a/hosts/pinwheel/modules/firefox/default.nix +++ b/hosts/pinwheel/modules/firefox/default.nix @@ -32,6 +32,10 @@ let ${wrapped}/bin/firefox -p ''; }; + + sharedSettings = { + "general.autoscroll" = false; + }; in { home-manager.users.alex = { @@ -44,16 +48,19 @@ in alex = { id = 0; name = "alex"; + + settings = sharedSettings // {}; }; work = { id = 1; name = "work"; + + settings = sharedSettings // {}; }; }; }; home.packages = [ ff ]; }; - }