refactor: update SSH configurations and add new key for Menno's 2025 setup
Some checks failed
Nix Format Check / check-format (push) Failing after 37s

This commit is contained in:
2025-01-28 15:16:07 +01:00
parent 79179aaaec
commit 8b51d375e5
13 changed files with 54 additions and 18 deletions

View File

@ -82,6 +82,9 @@ encrypt_folder() {
printfe "%s\n" "cyan" "Encrypting $file..."
gpg --quiet --batch --yes --symmetric --cipher-algo AES256 --armor --passphrase="$password" --output "$file.gpg" "$file"
printfe "%s\n" "cyan" "Staging $file for commit..."
git add -f "$file.gpg"
# Update checksum file
echo $current_checksum > "$checksum_file"
done