NixFiles/systems/mmacbookpro/keyboard.nix

14 lines
201 B
Nix
Raw Normal View History

2023-04-02 16:03:21 +01:00
{ config, ... }:
{
system.keyboard = {
enableKeyMapping = true;
remapCapsLockToEscape = true;
};
system.defaults.NSGlobalDomain = {
InitialKeyRepeat = 14;
KeyRepeat = 1;
};
}