Hi Matt,
The short answer is no. There is a fixed set of supported link functions. They are defined in the source code as:
linkInverses <- list('logit' = quote(expit()),
'log' = quote(exp()),
'probit' = quote(phi()),
'cloglog' = quote(icloglog()) )
There is no mechanism to add link functions while using the package. If you wanted to expand available links, you could add to this list in the source code in the format shown, rebuild the package, and I think it will work. But putting links on the left-hand side of a model declaration is really just a kind of syntactic sugar for creating (in your example) a stochastic node and a deterministic node that uses the link function, so you might as well simply add the additional line of model code.
HTH!
Perry