nixos-config/modules/system/controller/default.nix

8 lines
218 B
Nix
Raw Normal View History

2024-08-10 20:30:24 +02:00
{ ... }:
{
# Ignore Dualsense Touchpad in Desktop
services.udev.extraRules =''
ACTION=="add|change", KERNEL=="event[0-9]*", ATTRS{name}=="*Wireless Controller Touchpad", ENV{LIBINPUT_IGNORE_DEVICE}="1"
'';
}