diff options
Diffstat (limited to 'roles/workstation/tasks/packages.yml')
-rw-r--r-- | roles/workstation/tasks/packages.yml | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/roles/workstation/tasks/packages.yml b/roles/workstation/tasks/packages.yml deleted file mode 100644 index 4b38d4b..0000000 --- a/roles/workstation/tasks/packages.yml +++ /dev/null @@ -1,35 +0,0 @@ - -# -# - ---- - -- 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 |