From 5b94ef1ec42302b9c5b3376996ea802b4a3a9285 Mon Sep 17 00:00:00 2001 From: Bertrand Benjamin Date: Thu, 18 Apr 2019 16:22:20 +0200 Subject: [PATCH] Refact(choux): split wine and gaming --- Choux.yml | 3 ++- tasks/gaming.yml | 6 ++++++ tasks/wine.yml | 3 +-- 3 files changed, 9 insertions(+), 3 deletions(-) create mode 100644 tasks/gaming.yml diff --git a/Choux.yml b/Choux.yml index f6e8bdb..494cda3 100644 --- a/Choux.yml +++ b/Choux.yml @@ -19,9 +19,10 @@ - include: tasks/arch_gnome.yml - include: tasks/arch_graphicals.yml - include: tasks/dotfiles.yml - - include: tasks/wine.yml - include: tasks/home_autofs.yml - include: tasks/nfs_share.yml + - include: tasks/wine.yml + - include: tasks/gaming.yml - include: tasks/choux_borg_backup.yml - include: tasks/arch_virtualbox.yml diff --git a/tasks/gaming.yml b/tasks/gaming.yml new file mode 100644 index 0000000..7a38c43 --- /dev/null +++ b/tasks/gaming.yml @@ -0,0 +1,6 @@ +--- +- name: Install Lutris + pacman: + name: + - lutris + state: present diff --git a/tasks/wine.yml b/tasks/wine.yml index ebd04a1..50f50ac 100644 --- a/tasks/wine.yml +++ b/tasks/wine.yml @@ -19,7 +19,7 @@ pacman: update_cache: yes -- name: Install WINE and Lutris +- name: Install WINE pacman: name: - lib32-libglvnd # wine has multiple fulfilments for lib32-libgl @@ -31,5 +31,4 @@ - lib32-alsa-plugins - lib32-libpulse - lib32-openal - - lutris state: present