2024-12-18 09:40:11 +03:00
|
|
|
{ lib, config, ... }:
|
|
|
|
let
|
|
|
|
cfg = config.module.tablet;
|
|
|
|
in
|
2024-10-11 23:27:07 +03:00
|
|
|
{
|
2024-12-18 09:40:11 +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
|
|
|
}
|