1
0
Fork 0
mirror of https://github.com/LnL7/nix-darwin.git synced 2025-03-05 16:27:03 +00:00

Add trackpad dragging default

This commit is contained in:
Zach Coyle 2020-09-05 11:06:56 -04:00
parent 943a6b25d7
commit b8a2fd1c18
No known key found for this signature in database
GPG key ID: 8F830B7352A50B24

View file

@ -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 { system.defaults.trackpad.TrackpadRightClick = mkOption {
type = types.nullOr types.bool; type = types.nullOr types.bool;
default = null; default = null;