flake/groups/cryos/keybinds.nix
2026-03-22 11:42:51 +10:00

19 lines
413 B
Nix

{...}: {
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)";
};
};
};
};
}