···11+The secret key is stored outside of this repo. To decrypt secrets, add it following these steps:
22+33+1. Download the age-key.txt file
44+2. Create the directory to store it
55+```bash
66+ sudo mkdir -p /etc/age
77+```
88+99+3. Move the file there
1010+```bash
1111+ sudo mv age-key.txt /etc/age/keys.txt
1212+```
1313+1414+4. Set file permissions
1515+```bash
1616+ sudo chmod 600 /etc/age/keys.txt
1717+```
1818+1919+5. Set system owner
2020+```bash
2121+ if [ "$(uname)" = "Darwin" ]; then
2222+ sudo chown root:wheel /etc/age/keys.txt
2323+ else
2424+ sudo chown root:root /etc/age/keys.txt
2525+ fi
2626+```