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

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;
};
};
}