flake/groups/cryos/keybinds.nix

20 lines
413 B
Nix
Raw Normal View History

2026-03-22 11:42:51 +10:00
{...}: {
services.keyd = {
enable = true;
keyboards.default = {
ids = ["*"];
settings = {
main = {
capslock = "meta";
# NOTE: unsure whether or not i like oneshot...
# shift = "oneshot(shift)";
# control = "oneshot(control)";
# leftalt = "oneshot(alt)";
# rightalt = "oneshot(rightalt)";
};
};
};
};
}