10 lines
304 B
Nix
10 lines
304 B
Nix
{pkgs, ...}: {
|
|
services.udev.extraRules = ''
|
|
SUBSYSTEM=="usb", MODE="0666"
|
|
KERNEL=="uinput", MODE="0660", GROUP="input", OPTIONS+="static_node=uinput"
|
|
KERNEL=="event*", SUBSYSTEM=="input", MODE="0660", GROUP="input" '';
|
|
environment.systemPackages = with pkgs; [
|
|
zsa-udev-rules
|
|
];
|
|
}
|