From 705ab0bcf23ad29affd30ab410c406f12031eeea Mon Sep 17 00:00:00 2001 From: Andy Dirnberger Date: Sun, 25 Jun 2017 17:03:28 -0400 Subject: [PATCH] Add support for smart period substitution 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..cd00afed 100644 --- a/modules/system/defaults/NSGlobalDomain.nix +++ b/modules/system/defaults/NSGlobalDomain.nix @@ -61,6 +61,14 @@ with lib; ''; }; + system.defaults.NSGlobalDomain.NSAutomaticPeriodSubstitutionEnabled = mkOption { + type = types.nullOr types.bool; + default = null; + description = '' + Whether to enable smart period substitution. The default is true. + ''; + }; + system.defaults.NSGlobalDomain.NSAutomaticSpellingCorrectionEnabled = mkOption { type = types.nullOr types.bool; default = null;