kali-autosetup/roles/basic_packages/tasks/main.yml

17 lines
404 B
YAML
Raw Normal View History

2022-07-29 00:01:23 +02:00
---
2023-09-13 10:47:03 +02:00
- name: apt update && apt upgrade
apt:
upgrade: full
update_cache: yes
- name: Install generally important apt packages
2022-07-29 00:01:23 +02:00
apt:
pkg:
- htop
2023-09-13 10:47:03 +02:00
- flatpak
- name: Add flathub source
command: "flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo"
- name: Install VSCodium from flathub
command: "flatpak install flathub com.vscodium.codium"