biiiiig refactor (part 1)

This commit is contained in:
Schrottkatze 2024-03-05 17:10:35 +01:00
commit 7bacabf0d3
No known key found for this signature in database
23 changed files with 96 additions and 81 deletions

15
modules/input/default.nix Normal file
View file

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