Files
dotfiles/config/ansible/tasks/global/global.yml
Menno van Leeuwen 3bcf78d4eb
Some checks failed
Nix Format Check / check-format (push) Failing after 37s
refactor: remove pipx references from Ansible tasks and setup script
2025-03-10 21:02:32 +01:00

43 lines
1007 B
YAML

- name: Include global symlinks tasks
ansible.builtin.import_tasks: tasks/global/symlinks.yml
- name: Gather package facts
ansible.builtin.package_facts:
manager: auto
become: true
- name: Include Tailscale tasks
ansible.builtin.import_tasks: tasks/global/tailscale.yml
become: true
- name: Include Rust tasks
ansible.builtin.import_tasks: tasks/global/rust.yml
become: true
- name: Include Docker tasks
ansible.builtin.import_tasks: tasks/global/docker.yml
become: true
- name: Include Ollama tasks
ansible.builtin.import_tasks: tasks/global/ollama.yml
become: true
- name: Include OpenSSH Server tasks
ansible.builtin.import_tasks: tasks/global/openssh-server.yml
become: true
- name: Ensure common packages are installed
ansible.builtin.package:
name:
- git
- vim
- trash-cli
- curl
- wget
# Python is used for the dotfiles CLI tools
- python3
- python3-pip
- python3-venv
state: present
become: true