diff --git a/Choux.yml b/Choux.yml index 77b7004..b4a2c4d 100644 --- a/Choux.yml +++ b/Choux.yml @@ -12,6 +12,7 @@ - include: tasks/users.yml - include: tasks/sudo.yml - include: tasks/ssh.yml + - include: tasks/arch_python.yml - include: tasks/arch_aur.yml - include: tasks/arch_gnome.yml - include: tasks/arch_graphicals.yml diff --git a/tasks/arch_python.yml b/tasks/arch_python.yml new file mode 100644 index 0000000..ee9dd80 --- /dev/null +++ b/tasks/arch_python.yml @@ -0,0 +1,9 @@ +--- +- name: Install python env + pacman: + name: "{{ item }}" + state: present + with_items: + - python + - python-virtualenv +