summaryrefslogtreecommitdiff
path: root/modules/system/defaults/NSGlobalDomain.nix
diff options
context:
space:
mode:
authorsxyazi <sxyazi@gmail.com>2023-05-27 01:02:23 +0800
committersxyazi <sxyazi@gmail.com>2023-05-27 01:02:23 +0800
commitce785ccacf2723d3ffbcaf23e5a339b8c5ed88eb (patch)
treeab5c84d286b57fddcfbae666e3f56a19f4f9ef4a /modules/system/defaults/NSGlobalDomain.nix
parentb8c286c82c6b47826a6c0377e7017052ad91353c (diff)
feat: add `AppleScrollerPagingBehavior` option
Diffstat (limited to 'modules/system/defaults/NSGlobalDomain.nix')
-rw-r--r--modules/system/defaults/NSGlobalDomain.nix8
1 files changed, 8 insertions, 0 deletions
diff --git a/modules/system/defaults/NSGlobalDomain.nix b/modules/system/defaults/NSGlobalDomain.nix
index 0224b70..938b319 100644
--- a/modules/system/defaults/NSGlobalDomain.nix
+++ b/modules/system/defaults/NSGlobalDomain.nix
@@ -88,6 +88,14 @@ in {
'';
};
+ system.defaults.NSGlobalDomain.AppleScrollerPagingBehavior = mkOption {
+ type = types.nullOr types.bool;
+ default = null;
+ description = ''
+ Jump to the spot that's clicked on the scroll bar. The default is false.
+ '';
+ };
+
system.defaults.NSGlobalDomain.NSAutomaticCapitalizationEnabled = mkOption {
type = types.nullOr types.bool;
default = null;