--- - name: Install tmux and htop become: yes pacman: name={{ item }} state=present update_cache=yes with_items: - tmux - htop - name: Copy tmux config become: yes become_user: "{{ normal_user }}" copy: src=tmux.conf dest=/home/{{ normal_user }}/.tmux.conf