From 535b61ed641d7e535d1267d261c3477d5a053309 Mon Sep 17 00:00:00 2001 From: Haak Saxberg Date: Thu, 25 May 2023 22:46:15 -0700 Subject: [PATCH] prevent osx from scroll-navigating by default --- nix/system/worktop/darwin-configuration.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nix/system/worktop/darwin-configuration.nix b/nix/system/worktop/darwin-configuration.nix index e5ccc96..b996c3b 100644 --- a/nix/system/worktop/darwin-configuration.nix +++ b/nix/system/worktop/darwin-configuration.nix @@ -209,6 +209,9 @@ in mru-spaces = false; showhidden = true; }; + + # Two-finger scrolling should not cause browsers to navigate!! + NSGlobalDomain.AppleEnableSwipeNavigateWithScrolls = false; }; nix.settings.experimental-features = [ "nix-command" "flakes" ];