summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorDaiderd Jordan <daiderd@gmail.com>2020-09-12 09:32:47 +0200
committerGitHub <noreply@github.com>2020-09-12 09:32:47 +0200
commit28079f6d0fdd2a28dac267f5bc4d4c2f4903c814 (patch)
tree51e49e5c87c18d13a1bd073b6742be17d2a21cc7 /modules
parent6ae05c908e9cef33ecd6762e258078900851899a (diff)
parentb8a2fd1c18c32f819e835b6cdb9ab0caebd8685d (diff)
Merge pull request #225 from zachcoyle/add-trackpad-dragging-default
Add trackpad dragging default
Diffstat (limited to 'modules')
-rw-r--r--modules/system/defaults/trackpad.nix8
1 files changed, 8 insertions, 0 deletions
diff --git a/modules/system/defaults/trackpad.nix b/modules/system/defaults/trackpad.nix
index a86a347..edb6375 100644
--- a/modules/system/defaults/trackpad.nix
+++ b/modules/system/defaults/trackpad.nix
@@ -13,6 +13,14 @@ with lib;
'';
};
+ system.defaults.trackpad.Dragging = mkOption {
+ type = types.nullOr types.bool;
+ default = null;
+ description = ''
+ Whether to enable tap-to-drag. The default is false.
+ '';
+ };
+
system.defaults.trackpad.TrackpadRightClick = mkOption {
type = types.nullOr types.bool;
default = null;