NixFiles/systems/macbookpro/keyboard.nix

14 lines
201 B
Nix

{ config, ... }:
{
system.keyboard = {
enableKeyMapping = true;
remapCapsLockToEscape = true;
};
system.defaults.NSGlobalDomain = {
InitialKeyRepeat = 14;
KeyRepeat = 1;
};
}