2024-06-30 03:56:48 +03:00
|
|
|
{ lib, config, ... }: with lib; let
|
2024-06-25 04:04:39 +03:00
|
|
|
cfg = config.module.tablet;
|
|
|
|
in {
|
|
|
|
options = {
|
|
|
|
module.tablet.enable = mkEnableOption "Support for tables.";
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
hardware.opentabletdriver.enable = true;
|
|
|
|
};
|
2024-03-04 00:34:39 +03:00
|
|
|
}
|