dotfiles/terranix/lib/nomad_job.nix

13 lines
172 B
Nix
Raw Normal View History

{}: {
jobspec,
vars ? {},
...
} @ args:
{
jobspec = "\${file(\"${jobspec}\")}";
hcl2 = {
inherit vars;
};
}
// builtins.removeAttrs args ["jobspec" "vars"]