summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--hel.nix2
-rw-r--r--hel/wacom.conf32
2 files changed, 34 insertions, 0 deletions
diff --git a/hel.nix b/hel.nix
index fac02acd..f512458d 100644
--- a/hel.nix
+++ b/hel.nix
@@ -125,5 +125,7 @@
125 dates = "daily"; 125 dates = "daily";
126 options = "--delete-older-than 30d"; 126 options = "--delete-older-than 30d";
127 }; 127 };
128
129 environment.etc."X11/xorg.conf.d/50-wacom.conf".source = ./hel/wacom.conf;
128} 130}
129 131
diff --git a/hel/wacom.conf b/hel/wacom.conf
new file mode 100644
index 00000000..8992ab15
--- /dev/null
+++ b/hel/wacom.conf
@@ -0,0 +1,32 @@
1Section "InputClass"
2 Identifier "Wacom USB device class"
3 MatchUSBID "056a:*"
4 MatchDevicePath "/dev/input/event*"
5 Driver "wacom"
6EndSection
7
8Section "InputClass"
9 Identifier "Wacom PnP device class"
10 MatchPnPID "WACf*|WCOM*|WACM*|FUJ02e5|FUJ02e7|FUJ02e9"
11 MatchDevicePath "/dev/input/event*"
12 Driver "wacom"
13EndSection
14
15Section "InputClass"
16 Identifier "Wacom class"
17 MatchProduct "Wacom|WACOM|PTK-540WL|ISD-V4"
18 MatchDevicePath "/dev/input/event*"
19 Driver "wacom"
20EndSection
21
22Section "InputClass"
23 Identifier "Wacom serial class"
24 MatchProduct "Serial Wacom Tablet"
25 Driver "wacom"
26EndSection
27
28Section "InputClass"
29 Identifier "Wacom serial class identifiers"
30 MatchProduct "WACf|FUJ02e5|FUJ02e7|FUJ02e9"
31 Driver "wacom"
32EndSection