My Ansible playbook for bootstrap a new machine for personal use
Generate a ssh key to use with Github and add the pub key to Github account.
ssh-keygen -t ed25519 -C neftales@gmail.com
ssh-add "$(ssh-agent -s)"
echo "Copy the pub key and add to Github account\n"
cat ~/.ssh/id_ed25519.pubRun the script that install Ansible and run the base playbook.
wget -O - https://raw.githubusercontent.com/neftales/my-setup/main/install.sh | bashAfter this point log out and log in for the changes to take effect.
Open terminator and wait to install Zsh plugins, after run the follower command:
ansible-pull -U https://github.com/neftales/my-setup.git workstation.yaml -K
Now just wait the process of installation.