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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
config,
lib,
...
}:
{
options.zpha.services.keyd.enable = lib.mkEnableOption "keyd";
config = lib.mkIf config.zpha.services.keyd.enable {
users.groups.keyd = { };
systemd.services.keyd.serviceConfig = {
CapabilityBoundingSet = [ "CAP_SETGID" ];
};
environment.etc."libinput/local-overrides.quirks".text = ''
[Serial Keyboards]
MatchUdevType=keyboard
MatchName=keyd virtual keyboard
AttrKeyboardIntegration=internal
'';
services.keyd = {
enable = true;
keyboards = {
any = {
ids = [
"*"
];
settings.main = {
"leftcontrol" = "leftalt";
"leftalt" = "leftcontrol";
"s+d" = "oneshot(shift)";
"f+j" = "space";
"j+k" = "backspace";
"k+l" = "enter";
};
};
};
};
};
}