summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorDaiderd Jordan <daiderd@gmail.com>2017-06-26 20:31:31 +0200
committerGitHub <noreply@github.com>2017-06-26 20:31:31 +0200
commit5e61ca9fb488fce83170db28188615537a64f6e1 (patch)
tree4c00c2f22456df8d895d1383450fd934b44c9fb6 /modules
parent7682413824cb37ced8124e68605333f7333a49d0 (diff)
parent705ab0bcf23ad29affd30ab410c406f12031eeea (diff)
Merge pull request #35 from dirn/smart-periods
Add support for smart period substitution
Diffstat (limited to 'modules')
-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 7e61194..f5c0a5c 100644
--- a/modules/system/defaults/NSGlobalDomain.nix
+++ b/modules/system/defaults/NSGlobalDomain.nix
@@ -69,6 +69,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;