nix-dotfiles/modules/hardware/tablet.nix
2025-05-18 23:05:26 -07:00

15 lines
326 B
Nix

{ pkgs, config, lib, ... }:
with lib;
let
cfg = config.modules.hardware.tablet;
in {
options.modules.hardware.tablet = {
enable = mkEnableOption "Enable drawing tablet support";
};
config = mkIf cfg.enable {
hardware.opentabletdriver.enable = true;
hardware.opentabletdriver.daemon.enable = true;
};
}