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