Files
dotfiles/nixos/ryu/services/dualsense.nix
uttarayan21 59e0ffc1ae
Some checks failed
Flake checker / Build Nix targets (push) Has been cancelled
fix(dualsense): Correct touchpad device name for libinput ignore
chore(handoff): Disable airpods handoff service
perf(wivrn): Comment out nightly package for stability
2025-12-15 14:20:16 +05:30

12 lines
360 B
Nix

{pkgs, ...}: {
environment.systemPackages = with pkgs; [
dualsensectl
];
services.udev.extraRules = ''
# USB
ATTRS{name}=="Sony Interactive Entertainment DualSense Wireless Controller Touchpad", ENV{LIBINPUT_IGNORE_DEVICE}="1"
# Bluetooth
ATTRS{name}=="DualSense Wireless Controller Touchpad", ENV{LIBINPUT_IGNORE_DEVICE}="1"
'';
}