ctucx.git: nixfiles

ctucx' nixfiles

1 
2 
3 
4 
5 
6 
7 
8 
9 
10 
11 
12 
13 
14 
15 
16 
17 
18 
19 
20 
21 
22 
23 
24 
25 
26 
27 
{ config, pkgs, lib, ... }:

{

  system.defaults = {
    NSGlobalDomain = {
      # keyboard repeat rate (default: 25/6)
      InitialKeyRepeat = 35;
      KeyRepeat = 3;
    };
  };

  system.keyboard = {
    enableKeyMapping = true;
    userKeyMapping = [
#      {
#        HIDKeyboardModifierMappingSrc = 30064771303;
#        HIDKeyboardModifierMappingDst = 30064771302;
#      }
#      {
#        HIDKeyboardModifierMappingSrc = 30064771302;
#        HIDKeyboardModifierMappingDst = 30064771303;
#      }
    ];
  };

}