In my mind if you want to build a competitive library that will attract users for reasons other than "It uses language x" doing some in depth research of the existing solutions and their shortfalls is probably a good idea.
For instance, the reference to "copy/paste" you mention, and which is easy to misinterpret. Recipe reuse in chef is very much at the source code level - checkout a recipe and edit it for your specifics. Pallet places much more emphasis on using recipes (or crates as we call them) as library functions, in cleanly versioned packages (jar files). This allows you version your recipes, add them as dependencies to your projects, and cleanly separates the configuration data from the recipe code.
On a perhaps more fundamental level, the push model seems to be much more suited to automating configuration across nodes - eg. getting your haproxy pointing to your web frontends. While this is somewhat possible in Chef, it is left to the user to achieve. In Pallet there is first class support for this sort of cross node configuration. It makes it easy to have mixins, that say ensure a node is monitored, or it's log files collected.
A couple of additional advantages of the push model are that it leaves you free to use API's without having to push credentials for those api's to all your nodes and allows you to use Pallet for command and control.
Finally Chef and Puppet are both great frameworks. Pallet is a library.
Hopefully this outlines some of the differences in approach between Pallet and Chef/Puppet. The use of clojure was certainly not the driving force, and I hope that wasn't the main message that came across.
Recipe reuse in chef is very much at the source code level
- checkout a recipe and edit it for your specifics. Pallet
places much more emphasis on using recipes (or crates as
we call them) as library functions, in cleanly
versioned packages
This is huge; when I was using chef re-use was an absolute mess. Ruby has all this great existing gem infrastructure for first-class dependencies and distribution, but chef ignores all that and just sends you back to cobbling together git repositories.This is something that I can certainly appreciate and something that I've discussed at length with colleagues. In general dsl's require that you perform some impressive acrobatics when you want to extend them and this becomes particularly frustrating when you consider that a programming language like Ruby already has many well thought out facilities for said extensions (mostly directed at chef here). I'd like to think there's some happy middleground between a dsl that's easy to dive into and making use of the language constructs we've come to depend on everywhere else.
There is also a new way of managing cookbooks more like the Ruby Bundler called Librarian https://github.com/applicationsonline/librarian
It's also super fun to use, partly because Clojure is a great language.
Currently this comes with the price of a steeper learning curve, but the benefit is well worth it, as far as I'm concerned.