mirror of
https://codeberg.org/tmayoff/.dotfiles.git
synced 2025-12-06 16:58:34 -05:00
7 lines
276 B
Bash
7 lines
276 B
Bash
#!/bin/sh
|
|
|
|
if [ ! -f "/home/tyler/.config/chezmoi/key.txt" ]; then
|
|
mkdir -p "${HOME}/.config/chezmoi"
|
|
chezmoi age decrypt --output "${HOME}/.config/chezmoi/key.txt" --passphrase "{{ .chezmoi.sourceDir }}/key.txt.age"
|
|
chmod 600 "${HOME}/.config/chezmoi/key.txt"
|
|
fi
|