mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-29 19:46:17 +01:00
20 lines
345 B
Nix
20 lines
345 B
Nix
{}:
|
|
{ jobspec
|
|
, vars ? {}
|
|
, ...
|
|
}@args:
|
|
{
|
|
jobspec = "\${file(\"${jobspec}\")}";
|
|
hcl2 = {
|
|
enabled = true;
|
|
inherit vars;
|
|
};
|
|
lifecycle = {
|
|
ignore_changes = [
|
|
"hcl2[0].vars[\"flake_ref\"]"
|
|
"hcl2[0].vars[\"flake_sha\"]"
|
|
];
|
|
create_before_destroy = true;
|
|
};
|
|
} // builtins.removeAttrs args [ "jobspec" "vars" ]
|