21 lines
351 B
Nix
21 lines
351 B
Nix
_:
|
|
{
|
|
metacfg.services.xremap = {
|
|
enable = true;
|
|
deviceNames = [
|
|
"Hangsheng MonsGeek Keyboard"
|
|
"HS Galaxy100 Keyboard"
|
|
];
|
|
config = {
|
|
keymap = [
|
|
{
|
|
remap = {
|
|
LeftAlt-C = "COPY";
|
|
LeftAlt-V = "PASTE";
|
|
LeftAlt-X = "CUT";
|
|
};
|
|
}
|
|
];
|
|
};
|
|
};
|
|
}
|