NixOS on the Framework Laptop 16

Have others been successful getting the touchpad to disable while typing?
Perhaps I’m doing something wrong and I’ve tried a few different things, but without any luck so far. I do have nixos-hardware imported as well and everything else is working well. I’m using Gnome still on X11 since I remember Wayland having a couple issues for me but maybe should I try it again. Thanks!

Edit: Nevermind I got it working with the below and then a re-login.

    environment.etc = {
      "libinput/local-overrides.quirks".text = ''
        [Keyboard]
        MatchUdevType=keyboard
        MatchName=Framework Laptop 16 Keyboard Module - ANSI Keyboard
        AttrKeyboardIntegration=internal
      '';
    };
1 Like