14 lines
196 B
Nix
14 lines
196 B
Nix
{ ... }:
|
|
|
|
{
|
|
services.keyd = {
|
|
enable = true;
|
|
keyboards.default = {
|
|
ids = [ "*" ];
|
|
settings.main = {
|
|
"leftmeta+leftshift+f23" = "rightcontrol";
|
|
};
|
|
};
|
|
};
|
|
}
|