OpenTabletDriver: Difference between revisions
imported from old wiki |
OpenTabletDriver requires uinput https://opentabletdriver.net/Wiki/FAQ/Linux#missing-uinput-device-support |
||
| Line 3: | Line 3: | ||
= Installing OpenTabletDriver = | = Installing OpenTabletDriver = | ||
Install OpenTabletDriver, it's daemon and GUI by: | Install OpenTabletDriver, it's daemon and GUI by: | ||
{{file| | {{file|3=<nowiki> | ||
{ config, lib, pkgs, ... }: | { config, lib, pkgs, ... }: | ||
{ | { | ||
| Line 9: | Line 9: | ||
# Enable OpenTabletDriver | # Enable OpenTabletDriver | ||
hardware.opentabletdriver.enable = true; | hardware.opentabletdriver.enable = true; | ||
# Required by OpenTabletDriver | |||
hardware.uinput.enable = true; | |||
boot.kernelModules = [ "uinput" ]; | |||
... | ... | ||
} | } | ||
</nowiki>}} | </nowiki>|name=/etc/nixos/configuration.nix|lang=nix}} | ||
= Troubleshooting = | = Troubleshooting = | ||
Check out the official [https://opentabletdriver.net/Wiki/FAQ/Linux OpenTabletDriver Wiki] | Check out the official [https://opentabletdriver.net/Wiki/FAQ/Linux OpenTabletDriver Wiki] | ||
{{warning|1=Do not run <code>otd-daemon</code> as root }} | {{warning|1=Do not run <code>otd-daemon</code> as root }} | ||
But in case you do, run: | But in case you do, run: | ||