blob: 1a7d053b96a4a1ad77ad8ea847f45e2e9d3106d5 (
plain)
1
2
3
4
5
6
7
8
9
|
{ config, lib, pkgs, ... }:
{
users.users.${config.krebs.build.user.name}.extraGroups = [ "dialout" ];
services.udev.extraRules = ''
SUBSYSTEM=="tty", ATTRS{idVendor}=="10c4", ATTRS{idProduct}=="ea60", SYMLINK+="zigbee", MODE="0660", GROUP="dailout"
'';
}
|