9 lines
154 B
Nix
9 lines
154 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
services.udev = {
|
|
extraRules = ''
|
|
KERNEL=="hidraw*", SUBSYSTEM=="hidraw", MODE="0660", GROUP="wheel"
|
|
'';
|
|
};
|
|
}
|