add input remapping module with easier configuration

This commit is contained in:
Schrottkatze 2024-03-05 13:10:08 +01:00
commit 991cc8fc88
No known key found for this signature in database
7 changed files with 161 additions and 89 deletions

View file

@ -0,0 +1,15 @@
{...}: {
imports = [
./evremap.nix
];
services.xserver = {
xkb = {
layout = "us";
variant = "altgr-intl";
};
libinput = {
enable = true;
};
};
}