1
0
Fork 0
mirror of https://github.com/LnL7/nix-darwin.git synced 2025-03-13 20:30:02 +00:00

Merge pull request #35 from dirn/smart-periods

Add support for smart period substitution
This commit is contained in:
Daiderd Jordan 2017-06-26 20:31:31 +02:00 committed by GitHub
commit 5e61ca9fb4

View file

@ -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;