rice/hosts/alice/keyd.nix

14 lines
256 B
Nix
Raw Normal View History

2024-01-19 14:36:08 +00:00
_: {
services.keyd = {
enable = true;
keyboards.default.settings = {
main = {
"capslock" = "overload(control, esc)";
"esc" = "capslock";
2024-02-06 18:53:37 +00:00
"leftalt" = "leftmeta";
"leftmeta" = "leftalt";
2024-01-19 14:36:08 +00:00
};
};
};
}