14 lines
201 B
Nix
14 lines
201 B
Nix
|
{ config, ... }:
|
||
|
|
||
|
{
|
||
|
system.keyboard = {
|
||
|
enableKeyMapping = true;
|
||
|
remapCapsLockToEscape = true;
|
||
|
};
|
||
|
|
||
|
system.defaults.NSGlobalDomain = {
|
||
|
InitialKeyRepeat = 14;
|
||
|
KeyRepeat = 1;
|
||
|
};
|
||
|
}
|