NixFiles/systems/mmacbookpro/keyboard.nix
2023-04-02 18:01:14 +01:00

14 lines
201 B
Nix

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