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:
parent
943a6b25d7
commit
b8a2fd1c18
1 changed files with 8 additions and 0 deletions
|
@ -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;
|
||||||
|
|
Loading…
Add table
Reference in a new issue