nix/config/Tablet.nix

15 lines
223 B
Nix
Raw Normal View History

{
2024-11-04 04:37:29 +03:00
lib,
config,
...
}: let
cfg = config.module.tablet;
in {
config = lib.mkIf cfg.enable {
hardware.opentabletdriver.enable = true;
systemd.user.services.opentabletdriver.wantedBy = [
"default.target"
];
};
}