system/tasks/base_software.yml
2018-12-01 19:12:12 +01:00

14 lines
706 B
YAML

- name: launch base install software
pacman:
state: present # not required. choices: absent;latest;present. Desired state of the package.
name: ['zsh','stow','awesome-terminal-fonts','wget','bat','diff-so-fancy','git','htop','thefuck','tldr','ntfs-3g','tmux','vim','zsh-theme-powerlevel9k' ] # not required. Name or list of names of the packages to install, upgrade, or remove.
update_cache: true # not required. Whether or not to refresh the master package lists. This can be run as part of a package installation or as a separate step.
become: yes
- name: install oh-my-zsh-git
aur:
skip_installed: True
name: oh-my-zsh-git
use: yay
become: yes
become_user: aur_builder