2025-08-08 22:26:14 +03:00
|
|
|
- name: Configure distrobox dev container
|
2025-08-08 21:41:02 +03:00
|
|
|
hosts: localhost
|
|
|
|
|
connection: local
|
|
|
|
|
vars:
|
2025-08-14 14:46:34 +03:00
|
|
|
configure:
|
2025-08-09 11:47:58 +03:00
|
|
|
- bash
|
|
|
|
|
- cli
|
|
|
|
|
- git
|
|
|
|
|
- ssh
|
|
|
|
|
- scripts
|
|
|
|
|
apps:
|
|
|
|
|
- cli
|
2025-08-08 21:41:02 +03:00
|
|
|
vars_prompt:
|
|
|
|
|
- name: tools_in
|
2025-08-14 11:59:05 +03:00
|
|
|
prompt: "Specify comma separated list of required tool packages (cpp, js, haskell, ocaml, coq, txt, lang, truffle)"
|
2025-08-09 11:47:58 +03:00
|
|
|
pre_tasks:
|
|
|
|
|
- name: Get tools list
|
|
|
|
|
ansible.builtin.set_fact:
|
|
|
|
|
tools: "{{ tools_in.split(',') }}"
|
2025-08-08 21:41:02 +03:00
|
|
|
roles:
|
2025-08-08 22:26:14 +03:00
|
|
|
# link and copy dotfiles
|
2025-08-08 21:41:02 +03:00
|
|
|
- role: dotfiles
|
2025-08-08 22:26:14 +03:00
|
|
|
# install apps
|
2025-08-08 21:41:02 +03:00
|
|
|
- role: installs
|
2025-08-08 22:26:14 +03:00
|
|
|
# install and setup dev tools
|
2025-08-08 21:41:02 +03:00
|
|
|
- role: dev
|