Added a BUNCH of configs.

This commit is contained in:
2026-05-17 00:46:26 +02:00
parent 46e2494a6d
commit 292477d516
20 changed files with 22525 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
---
- name: Install common packages
hosts: debian machines
become: true
vars:
common_packages:
- qemu-guest-agent
- btop
- fastfetch
- curl
- wget
- nano
tasks:
- name: Install packages
apt:
name: "{{ common_packages }}"
state: present
update_cache: true