aboutsummaryrefslogtreecommitdiff
path: root/src/packages/install.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'src/packages/install.yaml')
-rw-r--r--src/packages/install.yaml15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/packages/install.yaml b/src/packages/install.yaml
new file mode 100644
index 0000000..2823c7c
--- /dev/null
+++ b/src/packages/install.yaml
@@ -0,0 +1,15 @@
+- name: Wayland Setup
+ hosts: all
+ remote_user: root
+ connection: local
+ vars:
+ packages: "{{ lookup('file', './packages.yaml') | from_yaml }}"
+ tasks:
+ - name: Package Management
+ ansible.builtin.debug:
+ msg: Using packages.yaml as source
+ - name: Installing Packages
+ ansible.builtin.dnf:
+ name: "{{ packages.groups.development }}"
+ state: latest
+