15 lines
224 B
Nix
15 lines
224 B
Nix
|
{...}: {
|
||
|
programs.niri.settings.input = {
|
||
|
keyboard = {
|
||
|
xkb = {
|
||
|
layout = "us";
|
||
|
variant = "altgr-intl";
|
||
|
};
|
||
|
};
|
||
|
touchpad = {
|
||
|
tap = true;
|
||
|
natural-scroll = true;
|
||
|
};
|
||
|
};
|
||
|
}
|