infra/module/aspect/software/software-gui/open-tablet.nix
2025-12-01 13:23:24 +07:00

16 lines
283 B
Nix

{
den.aspects = {
open-tablet = {
nixos = {
hardware.opentabletdriver = {
enable = true;
daemon.enable = true;
blacklistedKernelModules = [
"hid-uclogic"
"wacom"
];
};
};
};
};
}