dotfiles/.config/ansible/roles/arch/packages/tasks/main.yml
Sergio Laín 885b20e877
⚙️ config(ansible): added ansible and changed a lot of the yadm logic to ansible folder
i still have a lot of work to finish the ansible setup, as well as testing it (the worst part...)
2023-11-19 15:44:53 +01:00

17 lines
386 B
YAML

- name: Ask user for type of install
hosts: all
become: true
vars_prompt:
- name: install_input
prompt: "What type of install do you want?"
choices:
- "minimal"
- "full"
default: "minimal"
private: no
block:
- name: Install packages for the system
include_tasks: "{{ install_input }}.yml"
when: install_input is defined