nix-configs/modules/input/default.nix

17 lines
214 B
Nix
Raw Permalink Normal View History

{...}: {
imports = [
./evremap.nix
];
2024-05-06 19:32:14 +00:00
services = {
libinput = {
enable = true;
};
2024-05-06 19:32:14 +00:00
xserver = {
xkb = {
layout = "us";
variant = "altgr-intl";
};
};
};
}