Skip to content

Commit

Permalink
Merge pull request NixOS#225 from zachcoyle/add-trackpad-dragging-def…
Browse files Browse the repository at this point in the history
…ault

Add trackpad dragging default
  • Loading branch information
LnL7 committed Sep 12, 2020
2 parents 6ae05c9 + b8a2fd1 commit 28079f6
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions modules/system/defaults/trackpad.nix
Expand Up @@ -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;
Expand Down

0 comments on commit 28079f6

Please sign in to comment.