summaryrefslogtreecommitdiffstats
path: root/roles/gnome/tasks/install-archlinux.yml
diff options
context:
space:
mode:
authorAhmed AbdelHalim <[email protected]>2025-09-21 22:55:57 +0200
committerAhmed AbdelHalim <[email protected]>2025-09-21 22:55:57 +0200
commit563e3be63a96dda971a8ec5aee46731f22d0a45c (patch)
tree3f67d360750f4a6a66b174f7e521742bef78717a /roles/gnome/tasks/install-archlinux.yml
parentd76ccd0db8d72c539ed70d02e37e74af7e259fd5 (diff)
Fix installing gnome on debian and arch
Instead of using ubuntu version which isn't great, I prefer using the minimal gnome
Diffstat (limited to 'roles/gnome/tasks/install-archlinux.yml')
-rw-r--r--roles/gnome/tasks/install-archlinux.yml12
1 files changed, 12 insertions, 0 deletions
diff --git a/roles/gnome/tasks/install-archlinux.yml b/roles/gnome/tasks/install-archlinux.yml
new file mode 100644
index 00000000..b70c2540
--- /dev/null
+++ b/roles/gnome/tasks/install-archlinux.yml
@@ -0,0 +1,12 @@
+---
+- name: "Install gnome packages"
+ become: true
+ ansible.builtin.package:
+ name: "{{ gnome_packages }}"
+ state: "present"
+
+- name: "Enable GDM display manager"
+ become: true
+ ansible.builtin.systemd:
+ name: "gdm"
+ enabled: true