{ config, lib, ... }: let inherit (lib) mkIf mkEnableOption; in { options = { opentabletdriver.enable = mkEnableOption "enables opentabletdriver"; }; config = mkIf config.opentabletdriver.enable { hardware.opentabletdriver = { enable = true; daemon.enable = true; blacklistedKernelModules = [ "hid-uclogic" "wacom" ]; }; }; }