feat(systems): add custom udev rule for hidraw devices
Introduce a udev rule to properly configure hidraw devices with specific vendor and product
This commit is contained in:
parent
27895a1baf
commit
81df7dd4aa
|
@ -8,6 +8,9 @@ with lib.metacfg;
|
||||||
];
|
];
|
||||||
|
|
||||||
hardware.bluetooth.input.General.ClassicBondedOnly = false;
|
hardware.bluetooth.input.General.ClassicBondedOnly = false;
|
||||||
|
services.udev.extraRules = ''
|
||||||
|
KERNEL=="hidraw*", SUBSYSTEM=="hidraw", ATTRS{idVendor}=="342d", ATTRS{idProduct}=="e489", MODE="0660", GROUP="users", TAG+="uaccess", TAG+="udev-acl"
|
||||||
|
'';
|
||||||
|
|
||||||
metacfg = {
|
metacfg = {
|
||||||
base.enable = true;
|
base.enable = true;
|
||||||
|
|
Loading…
Reference in a new issue