nix-configs/modules/input/default.nix
2025-04-11 09:20:46 +02:00

17 lines
216 B
Nix

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