From 725fac8eff4dd2a0a68478c15b627eeec30901a9 Mon Sep 17 00:00:00 2001 From: Andy Dirnberger Date: Sun, 25 Jun 2017 16:55:37 -0400 Subject: [PATCH] Add support for autocapitalization Signed-off-by: Andy Dirnberger --- modules/system/defaults/NSGlobalDomain.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/modules/system/defaults/NSGlobalDomain.nix b/modules/system/defaults/NSGlobalDomain.nix index 0e8d0641..7e611942 100644 --- a/modules/system/defaults/NSGlobalDomain.nix +++ b/modules/system/defaults/NSGlobalDomain.nix @@ -45,6 +45,14 @@ with lib; ''; }; + system.defaults.NSGlobalDomain.NSAutomaticCapitalizationEnabled = mkOption { + type = types.nullOr types.bool; + default = null; + description = '' + Whether to enable automatic capitalization. The default is true. + ''; + }; + system.defaults.NSGlobalDomain.NSAutomaticQuoteSubstitutionEnabled = mkOption { type = types.nullOr types.bool; default = null;