mirror of
https://forge.katzen.cafe/schrottkatze/nix-configs.git
synced 2025-11-18 09:39:41 +01:00
20 lines
315 B
Nix
20 lines
315 B
Nix
{ ... }:
|
|
{
|
|
programs.niri.settings.input = {
|
|
keyboard = {
|
|
xkb = {
|
|
layout = "us";
|
|
variant = "altgr-intl";
|
|
};
|
|
};
|
|
mouse = {
|
|
accel-profile = "flat";
|
|
};
|
|
touchpad = {
|
|
tap = false;
|
|
natural-scroll = true;
|
|
dwt = true;
|
|
dwtp = true;
|
|
};
|
|
};
|
|
}
|