dotfiles/hosts/gpdPocket3/stupid-keyboard-2.nix
RingOfStorms (Joshua Bell) 7db5442cc0 stupdi keyboard 2
2024-06-10 19:08:01 -05:00

18 lines
308 B
Nix

{ ... }:
{
services.keyd = {
enable = true;
# `keyd monitor` to get new keys to remap
keyboards = {
rgo_sino_keyboard = {
ids = [ "04e8:7021" ];
settings = {
main = {
"up" = "/";
"/" = "up";
};
};
};
};
};
}