You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

52 lines
1.1 KiB

---
- name: Install packages
hosts: localhost
connection: local
become: false
tasks:
- name: Install apt packages
become: true
ansible.builtin.apt:
autoclean: true
autoremove: true
install_recommends: true
pkg:
- ansible
- curl
- fcitx5
- firefox-esr
- foot
- git
- grimshot
- lxpolkit
- network-manager-gnome
- nextcloud-desktop
- npm
- pass
- pipx
- plocate
- python3-yamlfix
- sway
- sway-backgrounds
- sway-notification-center
- swayidle
- swaylock
10 months ago
- unzip
- waybar
- wget
- wl-clipboard
- wofi
- yq
- zsh
state: latest
update_cache: true
- name: Remove apt packages
become: true
ansible.builtin.apt:
autoclean: true
autoremove: true
install_recommends: true
10 months ago
pkg: [nano]
state: absent
update_cache: true