nix-configs/modules/de/home/niri/input.nix

17 lines
262 B
Nix
Raw Normal View History

2025-03-12 02:00:13 +01:00
{...}: {
programs.niri.settings.input = {
keyboard = {
xkb = {
layout = "us";
variant = "altgr-intl";
};
};
touchpad = {
2025-03-12 05:23:27 +01:00
tap = false;
2025-03-12 02:00:13 +01:00
natural-scroll = true;
2025-03-12 05:23:27 +01:00
dwt = true;
dwtp = true;
2025-03-12 02:00:13 +01:00
};
};
}