Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
38 lines
596 B
Nix
38 lines
596 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
cfg = config.services.xserver.digimend;
|
|
|
|
pkg = config.boot.kernelPackages.digimend;
|
|
|
|
in
|
|
|
|
{
|
|
|
|
options = {
|
|
|
|
services.xserver.digimend = {
|
|
|
|
enable = mkEnableOption "the digimend drivers for Huion/XP-Pen/etc. tablets";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
# digimend drivers use xsetwacom and wacom X11 drivers
|
|
services.xserver.wacom.enable = true;
|
|
|
|
boot.extraModulePackages = [ pkg ];
|
|
|
|
environment.etc."X11/xorg.conf.d/50-digimend.conf".source =
|
|
"${pkg}/usr/share/X11/xorg.conf.d/50-digimend.conf";
|
|
|
|
};
|
|
|
|
}
|