2024-10-11 23:27:07 +03:00
|
|
|
{
|
2024-11-04 04:37:29 +03:00
|
|
|
lib,
|
|
|
|
config,
|
|
|
|
...
|
|
|
|
}: let
|
|
|
|
cfg = config.module.tablet;
|
|
|
|
in {
|
|
|
|
options.module.tablet.enable = lib.mkEnableOption "the support for tables.";
|
2024-06-25 04:04:39 +03:00
|
|
|
|
2024-11-04 04:37:29 +03:00
|
|
|
config = lib.mkIf cfg.enable {
|
|
|
|
hardware.opentabletdriver.enable = true;
|
|
|
|
systemd.user.services.opentabletdriver.wantedBy = [
|
|
|
|
"default.target"
|
|
|
|
];
|
|
|
|
};
|
2024-03-04 00:34:39 +03:00
|
|
|
}
|