diff options
| author | Zach Coyle <zach.coyle@gmail.com> | 2020-09-05 11:06:56 -0400 |
|---|---|---|
| committer | Zach Coyle <zach.coyle@gmail.com> | 2020-09-05 11:06:56 -0400 |
| commit | b8a2fd1c18c32f819e835b6cdb9ab0caebd8685d (patch) | |
| tree | ed82ec77195c52468b9af26509203d20bcba4fdb /modules/system | |
| parent | 943a6b25d7be58e45df9817139db2cb3808d3006 (diff) | |
Add trackpad dragging default
Diffstat (limited to 'modules/system')
| -rw-r--r-- | modules/system/defaults/trackpad.nix | 8 |
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; |
