nix/module/Tablet.nix

17 lines
302 B
Nix
Raw Normal View History

{
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"
];
};
}