1
0
Fork 0
mirror of https://github.com/LnL7/nix-darwin.git synced 2025-03-28 02:37:09 +00:00

Add 'TrackpadThreeFingerDrag' setting to trackpad module

This commit is contained in:
Jamie Rolfs 2017-10-03 12:14:29 -07:00
parent cc279e8a04
commit 3c447cfa00
No known key found for this signature in database
GPG key ID: 639E88C96B4DC14D

View file

@ -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.
'';
};
};
}