14 lines
721 B
YAML
14 lines
721 B
YAML
- name: launch base install software
|
|
pacman:
|
|
state: present # not required. choices: absent;latest;present. Desired state of the package.
|
|
name: ['zsh','stow','nmap','rsync','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 |