dotfiles/terranix/lib/nomad_job.nix

14 lines
192 B
Nix
Raw Normal View History

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