14 lines
440 B
Nix
14 lines
440 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
services.udev.extraRules =
|
|
let action = '' OWNER := "gebner" ''; in ''
|
|
# Atmel ATMega32U4
|
|
SUBSYSTEMS=="usb", ATTRS{idVendor}=="03eb", ATTRS{idProduct}=="2ff4", ${action}
|
|
# Atmel USBKEY AT90USB1287
|
|
SUBSYSTEMS=="usb", ATTRS{idVendor}=="03eb", ATTRS{idProduct}=="2ffb", ${action}
|
|
# Atmel ATMega32U2
|
|
SUBSYSTEMS=="usb", ATTRS{idVendor}=="03eb", ATTRS{idProduct}=="2ff0", ${action}
|
|
'';
|
|
}
|