10 lines
279 B
Nix
10 lines
279 B
Nix
{ pkgs, ... }: {
|
|
# udev rules
|
|
services.udev.extraRules = ''
|
|
KERNEL=="uinput",MODE:="0666",OPTIONS+="static_node=uinput"
|
|
SUBSYSTEMS=="usb",ATTRS{idVendor}=="28bd",MODE:="0666"
|
|
'';
|
|
|
|
# XP-Pen tablet driver
|
|
environment.systemPackages = [ pkgs.pentablet-driver ];
|
|
}
|