mirror of
https://forge.katzen.cafe/schrottkatze/nix-configs.git
synced 2026-02-07 18:22:47 +01:00
add input remapping module with easier configuration
This commit is contained in:
parent
01d070eb40
commit
991cc8fc88
7 changed files with 161 additions and 89 deletions
15
modules/desktop/input/default.nix
Normal file
15
modules/desktop/input/default.nix
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
{...}: {
|
||||
imports = [
|
||||
./evremap.nix
|
||||
];
|
||||
services.xserver = {
|
||||
xkb = {
|
||||
layout = "us";
|
||||
variant = "altgr-intl";
|
||||
};
|
||||
|
||||
libinput = {
|
||||
enable = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue