nix-configs/modules/de/home/niri/input.nix
2025-03-27 20:06:54 +01:00

16 lines
262 B
Nix

{...}: {
programs.niri.settings.input = {
keyboard = {
xkb = {
layout = "us";
variant = "altgr-intl";
};
};
touchpad = {
tap = false;
natural-scroll = true;
dwt = true;
dwtp = true;
};
};
}