From d405190f0dab3f9a8f15c123a089c408b37085d8 Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Thu, 19 Feb 2026 14:57:54 +0100 Subject: [PATCH] feat(amd): add USB rules for ATTINY85 --- systems/x86_64-linux/amd/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/systems/x86_64-linux/amd/default.nix b/systems/x86_64-linux/amd/default.nix index c46fe29..8398cce 100644 --- a/systems/x86_64-linux/amd/default.nix +++ b/systems/x86_64-linux/amd/default.nix @@ -125,6 +125,9 @@ with lib.metacfg; # Logitech racing wheel permissions (oversteer) services.udev.extraRules = '' + SUBSYSTEMS=="usb", ATTRS{idVendor}=="16d0", ATTRS{idProduct}=="0753", MODE:="0666" + KERNEL=="ttyACM*", ATTRS{idVendor}=="16d0", ATTRS{idProduct}=="0753", MODE:="0666", ENV{ID_MM_DEVICE_IGNORE}="1" + # Match Logitech HID devices for racing wheel support ACTION!="unbind", ACTION!="remove", SUBSYSTEM=="hid", ATTRS{idVendor}=="046d", GOTO="logitech-rules" GOTO="end"