infra/module/aspect/software/software-gui/open-tablet.nix

17 lines
283 B
Nix
Raw Permalink Normal View History

2025-12-01 13:23:24 +07:00
{
den.aspects = {
open-tablet = {
nixos = {
hardware.opentabletdriver = {
enable = true;
daemon.enable = true;
blacklistedKernelModules = [
"hid-uclogic"
"wacom"
];
};
};
};
};
}