nix-config/modules/keyd/default.nix

15 lines
235 B
Nix

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