nix-configs/modules/input/default.nix

18 lines
216 B
Nix
Raw Normal View History

2025-04-11 09:20:46 +02:00
{ ... }:
{
imports = [
./evremap.nix
];
2024-05-06 21:32:14 +02:00
services = {
libinput = {
enable = true;
};
2024-05-06 21:32:14 +02:00
xserver = {
xkb = {
layout = "us";
variant = "altgr-intl";
};
};
};
}