From b8a2fd1c18c32f819e835b6cdb9ab0caebd8685d Mon Sep 17 00:00:00 2001 From: Zach Coyle Date: Sat, 5 Sep 2020 11:06:56 -0400 Subject: [PATCH] Add trackpad dragging default --- modules/system/defaults/trackpad.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/modules/system/defaults/trackpad.nix b/modules/system/defaults/trackpad.nix index a86a3477..edb63754 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;