diff --git a/pkgs/agenix.nix b/pkgs/agenix.nix index cae142a..ec4bcd8 100644 --- a/pkgs/agenix.nix +++ b/pkgs/agenix.nix @@ -105,10 +105,12 @@ function edit { if [ -f "$FILE" ] then DECRYPT=("''${DEFAULT_DECRYPT[@]}") - while IFS= read -r key - do - DECRYPT+=(--identity "$key") - done <<<"$((find ~/.ssh -maxdepth 1 -type f -not -name "*pub" -not -name "config" -not -name "authorized_keys" -not -name "known_hosts") || exit 1)" + if [ -f "$HOME/.ssh/id_rsa" ]; then + DECRYPT+=(--identity "$HOME/.ssh/id_rsa") + fi + if [ -f "$HOME/.ssh/id_ed25519" ]; then + DECRYPT+=(--identity "$HOME/.ssh/id_ed25519") + fi DECRYPT+=(-o "$CLEARTEXT_FILE" "$FILE") ${ageBin} "''${DECRYPT[@]}" || exit 1 cp "$CLEARTEXT_FILE" "$CLEARTEXT_FILE.before"