mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-25 09:36:14 +01:00
13 lines
188 B
Nix
13 lines
188 B
Nix
{}:
|
|
{ jobspec
|
|
, vars ? {}
|
|
, ...
|
|
}@args:
|
|
{
|
|
jobspec = "\${file(\"${jobspec}\")}";
|
|
hcl2 = {
|
|
enabled = true;
|
|
inherit vars;
|
|
};
|
|
} // builtins.removeAttrs args [ "jobspec" "vars" ]
|