Does having nested playbooks make sense

One of the tasks in my provision playbook is to loop through the printers, and install each one. I wrote a script to do that (mkdir, download, install, check) and thought it might be better to use YML instead of BASH. Does it make sense for my provision playbook to invoke my install_printer playbook, passing variables (IP address, printer name, etc.) each time through the loop? I suppose I could just use the command module to call ansible-playbook. I was thinking there might be a better way.

Does having one playbook invoke another playbook make sense?

No, but including a list of plays in a playbook or a list of task includes is a common pattern.

Having a role named “printer” could make good sense.

Calling ansible-playbook from ansible-playbook should never be required.