๐๏ธ Ansible playbook to set up dev machine
- Add SSH key from local machine to GitHub.
- Ensure SSH key in running agent:
eval $(ssh-agent -s) && ssh-add ~/.ssh/id_rsa
- Clone repo:
git clone git@github.com:nixpig/playbook.git && cd $_
- Install pre-requisite packages:
./install.sh
- Run playbook:
ansible-playbook local.yml --ask-vault-pass --ask-become-pass
Note: when installing in default Arch running on WSL2, may need to also set LC_ALL="C.UTF-8"
.