rice/hosts/alice/keyd.nix

12 lines
192 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";
};
};
};
}