datta/playbooks/apt.yaml

52 lines
1.1 KiB
YAML
Raw Normal View History

2023-11-11 22:28:09 +01:00
---
- 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
2023-11-12 11:48:31 +00:00
- firefox-esr
2023-11-11 22:28:09 +01:00
- foot
- git
- grimshot
- lxpolkit
- network-manager-gnome
- nextcloud-desktop
- npm
- pass
- pipx
2023-11-12 11:48:31 +00:00
- plocate
2023-11-11 22:28:09 +01:00
- python3-yamlfix
- sway
- sway-backgrounds
- sway-notification-center
- swayidle
- swaylock
2023-11-12 12:07:38 +00:00
- unzip
2023-11-11 22:28:09 +01:00
- 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
2023-11-11 23:21:23 +01:00
pkg: [nano]
2023-11-11 22:28:09 +01:00
state: absent
update_cache: true