From ad3ba86ddf410ea0308ba152886e8b5a0523d79c Mon Sep 17 00:00:00 2001 From: Bertrand Benjamin Date: Wed, 22 Aug 2018 21:31:42 +0200 Subject: [PATCH] add gnome installation --- Choux.yml | 1 + tasks/arch_gnome.yml | 11 +++++++++++ 2 files changed, 12 insertions(+) create mode 100644 tasks/arch_gnome.yml diff --git a/Choux.yml b/Choux.yml index ef467d2..3478ff3 100644 --- a/Choux.yml +++ b/Choux.yml @@ -9,3 +9,4 @@ - include: tasks/arch_base_packages.yml - include: tasks/users.yml - include: tasks/sudo.yml + - include: tasks/arch_gnome.yml diff --git a/tasks/arch_gnome.yml b/tasks/arch_gnome.yml new file mode 100644 index 0000000..acbb105 --- /dev/null +++ b/tasks/arch_gnome.yml @@ -0,0 +1,11 @@ +--- +- name: Install gnome packages + pacman: + name: "{{ item }}" + state: present + with_items: + - gnome + - gdm + - gnome-tweak + +