11 lines
249 B
Nix
11 lines
249 B
Nix
|
{ config, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
services.xserver.digimend.enable = true;
|
||
|
|
||
|
services.udev.extraRules = ''
|
||
|
SUBSYSTEM=="input", ENV{ID_BUS}=="usb" ENV{ID_VENDOR_ID}=="256c", \
|
||
|
ATTRS{name}=="* Touch *", ENV{ID_INPUT.tags}="low_res_touch"
|
||
|
'';
|
||
|
}
|