summaryrefslogtreecommitdiff
path: root/modules/system/defaults/trackpad.nix
diff options
context:
space:
mode:
authorMike Vink <59492084+ivi-vink@users.noreply.github.com>2025-01-16 22:22:34 +0100
committerGitHub <noreply@github.com>2025-01-16 22:22:34 +0100
commit8e7bd91f353caacc0bc4105f573eb3e17f09e03a (patch)
treec5059edcbebd9644290cad7c653c49a36d593021 /modules/system/defaults/trackpad.nix
parent6bd39d420578aacf7c0bab7de3e7027b952115ae (diff)
parentbd921223ba7cdac346477d7ea5204d6f4736fcc6 (diff)
Merge branch 'LnL7:master' into masterHEADmaster
Diffstat (limited to 'modules/system/defaults/trackpad.nix')
-rw-r--r--modules/system/defaults/trackpad.nix23
1 files changed, 16 insertions, 7 deletions
diff --git a/modules/system/defaults/trackpad.nix b/modules/system/defaults/trackpad.nix
index ff5e2bb..354cfc6 100644
--- a/modules/system/defaults/trackpad.nix
+++ b/modules/system/defaults/trackpad.nix
@@ -8,7 +8,7 @@ with lib;
system.defaults.trackpad.Clicking = mkOption {
type = types.nullOr types.bool;
default = null;
- description = lib.mdDoc ''
+ description = ''
Whether to enable trackpad tap to click. The default is false.
'';
};
@@ -16,7 +16,7 @@ with lib;
system.defaults.trackpad.Dragging = mkOption {
type = types.nullOr types.bool;
default = null;
- description = lib.mdDoc ''
+ description = ''
Whether to enable tap-to-drag. The default is false.
'';
};
@@ -24,7 +24,7 @@ with lib;
system.defaults.trackpad.TrackpadRightClick = mkOption {
type = types.nullOr types.bool;
default = null;
- description = lib.mdDoc ''
+ description = ''
Whether to enable trackpad right click. The default is false.
'';
};
@@ -32,7 +32,7 @@ with lib;
system.defaults.trackpad.TrackpadThreeFingerDrag = mkOption {
type = types.nullOr types.bool;
default = null;
- description = lib.mdDoc ''
+ description = ''
Whether to enable three finger drag. The default is false.
'';
};
@@ -40,7 +40,7 @@ with lib;
system.defaults.trackpad.ActuationStrength = mkOption {
type = types.nullOr (types.enum [ 0 1 ]);
default = null;
- description = lib.mdDoc ''
+ description = ''
0 to enable Silent Clicking, 1 to disable. The default is 1.
'';
};
@@ -48,7 +48,7 @@ with lib;
system.defaults.trackpad.FirstClickThreshold = mkOption {
type = types.nullOr (types.enum [ 0 1 2 ]);
default = null;
- description = lib.mdDoc ''
+ description = ''
For normal click: 0 for light clicking, 1 for medium, 2 for firm.
The default is 1.
'';
@@ -57,11 +57,20 @@ with lib;
system.defaults.trackpad.SecondClickThreshold = mkOption {
type = types.nullOr (types.enum [ 0 1 2 ]);
default = null;
- description = lib.mdDoc ''
+ description = ''
For force touch: 0 for light clicking, 1 for medium, 2 for firm.
The default is 1.
'';
};
+ 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.
+ '';
+ };
+
};
}