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.

88 lines
1.9 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
- dia
- evince
- fcitx5
- flameshot
- foot
- git
- grimshot
- hiera-eyaml
- inkscape
- isort
- libreoffice
- lxpolkit
- mesa-utils
- mesa-utils-bin
- network-manager-gnome
- network-manager-config-connectivity-debian
- nextcloud-desktop
- nheko
- nodejs
- npm
- pass
- pavucontrol
- pipewire-audio
- pipx
- plocate
- pkexec
- puppet-lint
- python3-deepdiff
- python3-openstackclient
- python3-yamlfix
- qt5ct
- rsync
- scdaemon
- simple-scan
- sway
- sway-backgrounds
- sway-notification-center
- swayidle
- swaylock
- thunar
- thunderbird
- tsocks
- unzip
- waybar
- wdisplays
- wget
- wl-clipboard
- wlr-randr
- wofi
- xdg-desktop-portal
- xdg-desktop-portal-wlr
- xwayland
- yapf3
- yq
- zathura
- 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