datta/playbooks/apt.yaml

81 lines
1.8 KiB
YAML
Raw Normal View History

2023-11-11 22:28:09 +01:00
---
- name: Install packages
hosts: localhost
connection: local
become: false
2023-11-13 10:27:39 +00:00
vars:
uid: "{{ lookup('env','USER') }}"
2023-11-11 22:28:09 +01:00
tasks:
- name: Install apt packages
become: true
ansible.builtin.apt:
autoclean: true
autoremove: true
install_recommends: true
pkg:
- ansible
- cargo
2023-11-14 15:58:22 +01:00
- composer
2023-11-11 22:28:09 +01:00
- curl
2023-11-13 16:43:28 +01:00
- dia
2023-11-11 22:28:09 +01:00
- fcitx5
- foot
- git
- grimshot
2023-11-14 14:04:56 +01:00
- inkscape
- isort
2023-11-14 09:57:27 +01:00
- libreoffice
2023-11-11 22:28:09 +01:00
- lxpolkit
- mesa-utils
- mesa-utils-bin
2023-11-11 22:28:09 +01:00
- network-manager-gnome
2023-11-13 16:44:25 +01:00
- network-manager-config-connectivity-debian
2023-11-11 22:28:09 +01:00
- nextcloud-desktop
2023-11-14 14:59:25 +01:00
- nodejs
2023-11-11 22:28:09 +01:00
- npm
- pass
2023-11-13 10:27:39 +00:00
- pavucontrol
- pipewire-audio
2023-11-11 22:28:09 +01:00
- pipx
2023-11-12 11:48:31 +00:00
- plocate
2023-11-14 09:57:27 +01:00
- pkexec
2023-11-13 16:44:43 +01:00
- puppet-lint
- python3-deepdiff
2023-11-23 12:25:15 +01:00
- python3-openstackclient
2023-11-11 22:28:09 +01:00
- python3-yamlfix
2023-11-14 15:58:22 +01:00
- rsync
2023-11-12 15:26:56 +00:00
- scdaemon
2023-11-23 10:54:27 +01:00
- simple-scan
2023-11-11 22:28:09 +01:00
- sway
- sway-backgrounds
- sway-notification-center
- swayidle
- swaylock
2023-11-13 09:55:43 +00:00
- thunar
- thunderbird
2023-11-23 12:25:15 +01:00
- tsocks
2023-11-12 12:07:38 +00:00
- unzip
2023-11-11 22:28:09 +01:00
- waybar
2023-11-13 10:27:39 +00:00
- wdisplays
2023-11-11 22:28:09 +01:00
- wget
- wl-clipboard
2023-11-20 10:24:56 +01:00
- wlr-randr
2023-11-11 22:28:09 +01:00
- wofi
2023-11-13 09:55:43 +00:00
- xdg-desktop-portal
- xdg-desktop-portal-wlr
2023-11-13 16:45:00 +01:00
- xwayland
- yapf3
2023-11-11 22:28:09 +01:00
- 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