--- - name: First-boot setup hosts: raspberry gather_facts: false tasks: - name: Install packages become: true tags: - slow apt: update_cache: yes pkg: - neovim - tmux - zsh - git - stow - acl - name: Clone dotfiles tags: - slow shell: "git clone https://github.com/eug-vs/dotfiles.git ~/.dotfiles" - name: Change shell to zsh become: true shell: "chsh eug-vs -s $(which zsh)" - name: Install basic stow packages shell: "cd ~/.dotfiles && stow zsh raspberry"