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

18 lines
264 B
Nix
Raw Normal View History

2025-04-11 09:20:46 +02:00
{ ... }:
{
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
};
};
}