Skip to content

Commit

Permalink
🎉 (xremap.nix) Add xremap config
Browse files Browse the repository at this point in the history
  • Loading branch information
Comamoca committed Dec 3, 2024
1 parent bf77c20 commit 81f0247
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions xremap.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{ pkgs }: rec {
xremap-config = {
modmap = [
{
name = "Global";
remap = {
Enter = {
held = "Alt_R";
alone = "Enter";

};
KatakanaHiragana = "Ctrl_R";
};
}
];
};

xremap-config-yaml = (pkgs.formats.yaml { }).generate "config.yml" xremap-config;
}

0 comments on commit 81f0247

Please sign in to comment.