dotfiles/terranix/lib/nomad_job.nix

13 lines
188 B
Nix
Raw Normal View History

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