diff options
| author | Daiderd Jordan <daiderd@gmail.com> | 2023-06-20 21:55:28 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-06-20 21:55:28 +0200 |
| commit | 050da23813967ce629bee06b549e534334112ccb (patch) | |
| tree | 850e81a0b056d5d81ecd4a102ca130be773f8313 /modules | |
| parent | 689aa795a171e81b208b210d2d81e9129f014366 (diff) | |
| parent | ce785ccacf2723d3ffbcaf23e5a339b8c5ed88eb (diff) | |
Merge pull request #672 from sxyazi/pr-af01ed5d
Add `AppleScrollerPagingBehavior` option
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/system/defaults/NSGlobalDomain.nix | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/modules/system/defaults/NSGlobalDomain.nix b/modules/system/defaults/NSGlobalDomain.nix index 5888d7c..3fb8db0 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; |
