NixFiles/systems/macos/keyboard.nix

21 lines
521 B
Nix
Raw Permalink Normal View History

2023-12-19 19:08:55 +00:00
{ config, ... }:
{
system.keyboard = {
enableKeyMapping = true;
remapCapsLockToEscape = true;
};
system.defaults.NSGlobalDomain = {
# Speed up key repeat
InitialKeyRepeat = 14;
KeyRepeat = 1;
# In general, have Apple not mess with our text
NSAutomaticCapitalizationEnabled = false;
NSAutomaticDashSubstitutionEnabled = false;
NSAutomaticPeriodSubstitutionEnabled = false;
NSAutomaticQuoteSubstitutionEnabled = null;
NSAutomaticSpellingCorrectionEnabled = false;
};
}