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

15 lines
224 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 = {
tap = true;
natural-scroll = true;
};
};
}