diff --git a/pkgs/agenix.nix b/pkgs/agenix.nix index d6a5dc0..bdc4942 100644 --- a/pkgs/agenix.nix +++ b/pkgs/agenix.nix @@ -19,6 +19,7 @@ function show_help () { echo '-e, --edit FILE edits FILE using $EDITOR' echo '-r, --rekey re-encrypts all secrets with specified recipients' echo '-i, --identity identity to use when decrypting' + echo '-v, --verbose verbose output' echo ' ' echo 'FILE an age-encrypted file' echo ' ' @@ -68,6 +69,10 @@ while test $# -gt 0; do shift REKEY=1 ;; + -v|--verbose) + shift + set -x + ;; *) show_help exit 1