summaryrefslogtreecommitdiff
path: root/modules/system
diff options
context:
space:
mode:
authorHenrique Goncalves <kamus@hadenes.io>2024-05-23 16:40:17 -0300
committerGitHub <noreply@github.com>2024-05-23 16:40:17 -0300
commit6cbe6bc2da267273c55ee08eaaeebfbc7dfcdf30 (patch)
tree35fd3f2eb045564584067f199b56d8c03531b987 /modules/system
parenteac4f25028c1975a939c8f8fba95c12f8a25e01c (diff)
Update trackpad.nix
Diffstat (limited to 'modules/system')
-rw-r--r--modules/system/defaults/trackpad.nix9
1 files changed, 9 insertions, 0 deletions
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.
+ '';
+ };
+
};
}