This repository contains the ansible playbook files to setup my Ubuntu desktop
sudo apt update && \
sudo apt install openssh-server sshpass ansible && \
eval $(ssh-agent)
sudo ufw allow ssh && \
sudo ufw enable
git clone https://github.com/tompsh/dotfiles && cd dotfiles
# Edit the variables accordingly
$EDITOR vars/ansible.yml
# Run the playbook
ansible-playbook -kK \
-u $(whoami) \
-i 'localhost,' \
--extra-vars "@vars/ansible.yml" playbook.yml