From cac01f421e3b1236dd4e8cd90d5d3566bd920b1a Mon Sep 17 00:00:00 2001 From: Yorick Barbanneau Date: Wed, 13 Sep 2023 16:43:26 +0200 Subject: [PATCH] Add Luci input configuration --- home-manager/hosts/luci.nix | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 home-manager/hosts/luci.nix diff --git a/home-manager/hosts/luci.nix b/home-manager/hosts/luci.nix new file mode 100644 index 0000000..97d99c2 --- /dev/null +++ b/home-manager/hosts/luci.nix @@ -0,0 +1,15 @@ +_: { + wayland.windowManager.sway.config.input = { + "1:1:AT_Translated_Set_2_keyboard" = { + xkb_layout = "us"; + xkb_variant = "altgr-intl"; + }; + + "2:7:SynPS/2_Synaptics_TouchPad" = { + "tap" = "enable"; + "accel_profile" = "adaptive"; + "dwt" = "enable"; + "pointer_accel" = "0.3"; + }; + }; +}