From 27c89326c28fbbd2e985a68f06b31512bf324d4a Mon Sep 17 00:00:00 2001 From: "Gustavo \"Guz\" L de Mello" Date: Fri, 7 Feb 2025 16:11:48 -0300 Subject: [PATCH] feat: drawing table support --- hosts/battleship/configuration.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/hosts/battleship/configuration.nix b/hosts/battleship/configuration.nix index 4b30d01..3fe9e47 100644 --- a/hosts/battleship/configuration.nix +++ b/hosts/battleship/configuration.nix @@ -28,4 +28,9 @@ proton-ge-bin ]; + # OpenTabletDriver + hardware.opentabletdriver.enable = true; + services.udev.extraRules = '' + KERNEL=="hidraw", SUBSYSTEM=="hidraw", MODE="0660", GROUP="plugdev" + ''; }