From 6cbe6bc2da267273c55ee08eaaeebfbc7dfcdf30 Mon Sep 17 00:00:00 2001 From: Henrique Goncalves Date: Thu, 23 May 2024 16:40:17 -0300 Subject: [PATCH] Update trackpad.nix --- modules/system/defaults/trackpad.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/modules/system/defaults/trackpad.nix b/modules/system/defaults/trackpad.nix index edb6375..354cfc6 100644 --- a/modules/system/defaults/trackpad.nix +++ b/modules/system/defaults/trackpad.nix @@ -63,5 +63,14 @@ with lib; ''; }; + system.defaults.trackpad.TrackpadThreeFingerTapGesture = mkOption { + type = types.nullOr (types.enum [ 0 2 ]); + default = null; + description = '' + 0 to disable three finger tap, 2 to trigger Look up & data detectors. + The default is 2. + ''; + }; + }; }