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.

100 lines
2.2 KiB

---
- name: Install packages
hosts: localhost
connection: local
become: false
vars:
uid: "{{ lookup('env','USER') }}"
tasks:
- name: Install apt packages
become: true
ansible.builtin.apt:
autoclean: true
autoremove: true
install_recommends: true
pkg:
- ansible
- cargo
- composer
- cups
- curl
- dbus-broker
- dia
- evince
- fcitx5
- file-roller
- firmware-linux
- flameshot
- foot
- git
- grimshot
- hiera-eyaml
- inkscape
- isort
- libreoffice
- lightdm
- lxpolkit
- mesa-utils
- mesa-utils-bin
- meson
- network-manager-gnome
- network-manager-config-connectivity-debian
- nextcloud-desktop
- nheko
- nodejs
- npm
- pass
- pavucontrol
- pipewire
- pipewire-audio
- pipx
- plocate
- plymouth
- plymouth-themes
- plymouth-label
- pkexec
- puppet-lint
- python3-deepdiff
- python3-openstackclient
- python3-yamlfix
- python3-xdg
- qt5ct
- rsync
- scdaemon
- shfmt
- simple-scan
- sway
- sway-backgrounds
- sway-notification-center
- swayidle
- swaylock
- thunar
- thunderbird
- tsocks
- unzip
- waybar
- waypipe
- wdisplays
- wget
- wl-clipboard
- wlr-randr
- wofi
- xdg-desktop-portal
- xdg-desktop-portal-gtk
- xdg-desktop-portal-wlr
- xwayland
- yapf3
- yq
- zsh
state: latest
update_cache: true
- name: Remove apt packages
become: true
ansible.builtin.apt:
autoclean: true
autoremove: true
install_recommends: true
pkg: [nano]
state: absent
update_cache: true