diff options
| author | Jamie Rolfs <jamie.rolfs@gmail.com> | 2017-10-03 12:14:29 -0700 |
|---|---|---|
| committer | Jamie Rolfs <jamie.rolfs@gmail.com> | 2017-10-03 14:16:30 -0700 |
| commit | 3c447cfa00f1b0340f75956a501352a8be80b7f3 (patch) | |
| tree | f8679c2128a9c714ba441ba1a7bc5501b47adff4 /modules/system | |
| parent | cc279e8a044361dbed1cc6330b5db9c60309293e (diff) | |
Add 'TrackpadThreeFingerDrag' setting to trackpad module
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 c093ae2..1fb1c90 100644 --- a/modules/system/defaults/trackpad.nix +++ b/modules/system/defaults/trackpad.nix @@ -21,5 +21,13 @@ with lib; ''; }; + system.defaults.trackpad.TrackpadThreeFingerDrag = mkOption { + type = types.nullOr types.bool; + default = null; + description = '' + Whether to enable three finger drag. The default is false. + ''; + }; + }; } |
