nix-config/modules/keyd/default.nix

16 lines
273 B
Nix

{
services.keyd = {
enable = true;
keyboards = {
default = {
ids = [ "*" ];
settings = {
main = {
space = "overload(control, space)";
shift = "oneshot(shift)";
};
};
};
};
};
}