Ansible_workstation/tasks/arch_CLI_packages.yml

31 lines
453 B
YAML

---
- name: Update and upgrade all packages
pacman:
update_cache: yes
upgrade: yes
- name: Install base CLI packages
pacman:
name: "{{ item }}"
state: present
with_items:
- zsh
- vim
- tmux
- ruby
- git
- openssh
- htop
- ntop
- ranger
- name: Install extra CLI packages
pacman:
name: "{{ item }}"
state: present
with_items:
- moc
- newsboat
- pass
when: not minimal