You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(chezmoi): make --exclude=encrypted configurable via extra_args option
Removes hardcoded --exclude=encrypted from both build-time apply and
postCreateCommand. New extra_args string option (default: --exclude=encrypted)
preserves backward compatibility. Set to empty string to apply encrypted
files when providing a decryption key via env_vars.
Bumps version to 1.9.1.
"description": "Skip chezmoi run_* scripts at build time and run them in postCreateCommand instead. Combine with the persist-nix-store feature so the Nix store persists across rebuilds. When false (default) behaviour is identical to the previous version."
52
+
},
53
+
"extra_args": {
54
+
"type": "string",
55
+
"default": "--exclude=encrypted",
56
+
"description": "Extra flags appended to chezmoi apply at build time and in postCreateCommand. Defaults to '--exclude=encrypted'. Set to empty string to apply encrypted files (provide the decryption key via env_vars)."
0 commit comments