nix/docs/setup.sh

47 lines
1.2 KiB
Bash
Raw Normal View History

2023-09-22 14:23:12 +02:00
#!/usr/bin/env bash
2023-09-23 15:32:23 +02:00
pushd /etc/nixos/git
2023-09-23 15:13:49 +02:00
2023-09-18 09:16:55 +02:00
# Setup SOPS
2023-09-23 15:13:49 +02:00
echo "Setting up SOPS keys..... "
2023-10-07 10:37:10 +02:00
echo ">>> !!!!!"
echo ">>> !!!!!"
echo ">>> !!!!!"
echo ">>> !!!!! Copy this signature to .sops.yaml: "
echo ">>> !!!!!"
echo ">>> !!!!!"
echo ">>> !!!!!"
2023-09-23 02:05:32 +02:00
sudo ssh-to-pgp \
2023-09-23 15:05:27 +02:00
-comment "Generated `date +%Y.%m.%d`" \
2023-09-23 02:05:32 +02:00
-email "root@`hostname`" \
-i /etc/ssh/ssh_host_rsa_key \
-o /etc/nixos/git/keys/hosts/$(hostname).asc
2023-09-18 09:16:55 +02:00
# Set up ssh keys
2023-10-07 10:37:10 +02:00
echo ">>> Setting up SSH Keys..... "
2023-09-18 09:16:55 +02:00
ssh-keygen -t rsa -b 8192 -f ~/.ssh/id_rsa -N ""
2023-09-22 14:09:37 +02:00
echo "" >> ./keys/ssh/keys.txt
echo "# `whoami`@`hostname`" >> ./keys/ssh/keys.txt
cat /home/albert/.ssh/id_rsa.pub >> ./keys/ssh/keys.txt
2023-09-18 09:16:55 +02:00
2023-10-07 10:37:10 +02:00
echo ">>> Setting up Distributed Build SSH Keys..... "
sudo ssh-keygen -t rsa -b 8192 -f /root/.ssh/id_rsa -N ""
echo "" >> ./keys/ssh/builder-keys.txt
echo "# root@`hostname`" >> ./keys/ssh/builder-keys.txt
sudo cat /root/.ssh/id_rsa.pub >> ./keys/ssh/builder-keys.txt
2023-09-18 09:16:55 +02:00
# Add all changes to git and and push
2023-10-07 10:37:10 +02:00
echo ">>> Pushing to git..... "
2023-09-19 10:01:58 +02:00
git add keys/hosts/`hostname`.asc
2023-10-07 10:37:10 +02:00
git commit -am "Setup: `hostname`"
2023-09-18 09:16:55 +02:00
git push
2023-09-22 14:09:37 +02:00
echo
echo
2023-10-07 10:37:10 +02:00
echo ">>> Complete. Once '.sops.yaml' is updated, "
echo ">>> run 'update-secrets' and reboot."
2023-09-28 13:23:04 +02:00
echo
2023-09-23 15:13:49 +02:00
echo
2023-10-07 10:37:10 +02:00
echo ">>> Reminder: Upload these changes to git"
2023-09-23 02:05:32 +02:00
2023-10-10 14:59:58 +02:00
popd