blob: 4b38d4b76cc07ff76af40ffa3330222bd0bbbf59 (
plain) (
tree)
|
|
#
#
---
- name: download common packages
package: name="{{ item }}" state=present
loop:
- zip unzip tar git curl wget syncthing
- qutebrowser firefox feh mpv cmus vlc
- i3 i3status bemenu
- go rust ansible
- emacs neovim htop
- gnupg zsh
- tor
ignore_errors: true
- name: download openbsd packages
package: name="{{ item }}" state=present
loop:
- py3-pip py3-requests py3-jedi py3-neovim
- free automake clang-tools-extra
- wireguard-tools
- tor-browser torsocks
when: ansible_distribution == "OpenBSD"
ignore_errors: true
- name: download archlinux packages
package: name="{{ item }}" state=present
loop:
- python-pip python-requests python-jedi python-neovim
- wireguard-dkms
when: ansible_distribution == "Archlinux"
ignore_errors: true
|