1
0
Fork 0
mirror of https://github.com/LnL7/nix-darwin.git synced 2025-03-28 02:37:09 +00:00

Add support for autocapitalization

Signed-off-by: Andy Dirnberger <andy@dirnberger.me>
This commit is contained in:
Andy Dirnberger 2017-06-25 16:55:37 -04:00
parent 54244e0bb0
commit 725fac8eff
No known key found for this signature in database
GPG key ID: 9B00CE61264DD8DB

View file

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