Some checks failed
Flake checker / Build Nix targets (push) Has been cancelled
chore(handoff): Disable airpods handoff service perf(wivrn): Comment out nightly package for stability
12 lines
360 B
Nix
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"
|
|
'';
|
|
}
|