summaryrefslogtreecommitdiff
path: root/modules/system
diff options
context:
space:
mode:
authorAndy Dirnberger <andy@dirnberger.me>2017-06-25 17:03:28 -0400
committerAndy Dirnberger <andy@dirnberger.me>2017-06-25 17:03:28 -0400
commit705ab0bcf23ad29affd30ab410c406f12031eeea (patch)
treea8a7329d9dff4fb4cce3f1b70bda2a549d53fb35 /modules/system
parent54244e0bb00b4adbd5beef5059866ac2e40de79a (diff)
Add support for smart period substitution
Signed-off-by: Andy Dirnberger <andy@dirnberger.me>
Diffstat (limited to 'modules/system')
-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 0e8d064..cd00afe 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;