- hosts: desktop tasks: - name: install desktop software dnf: name: "{{ item }}" state: present become: yes when: ansible_distribution == 'Fedora' with_items: - "{{ desktop_software }}"