refactor: reorganize Ansible tasks for better structure and include common package installations
All checks were successful
Nix Format Check / check-format (pull_request) Successful in 40s
All checks were successful
Nix Format Check / check-format (pull_request) Successful in 40s
This commit is contained in:
30
config/ansible/tasks/workstations/workstation.yml
Normal file
30
config/ansible/tasks/workstations/workstation.yml
Normal file
@@ -0,0 +1,30 @@
|
||||
- name: Include VSCode tasks
|
||||
ansible.builtin.import_tasks: tasks/workstations/vscode.yml
|
||||
become: true
|
||||
|
||||
- name: Include Brave tasks
|
||||
ansible.builtin.import_tasks: tasks/workstations/brave.yml
|
||||
become: true
|
||||
|
||||
- name: Include 1Password tasks
|
||||
ansible.builtin.import_tasks: tasks/workstations/1password.yml
|
||||
become: true
|
||||
|
||||
- name: Include GNOME Extensions tasks
|
||||
ansible.builtin.import_tasks: tasks/workstations/gnome-extensions.yml
|
||||
|
||||
- name: Include flatpaks tasks
|
||||
ansible.builtin.import_tasks: tasks/workstations/flatpaks.yml
|
||||
|
||||
- name: Ensure common packages are installed
|
||||
ansible.builtin.package:
|
||||
name:
|
||||
# Flatpak package manager, used for various applications
|
||||
- flatpak
|
||||
# Required by Pano - Clipboard Manager (GNOME Extension)
|
||||
- libgda
|
||||
- libgda-sqlite
|
||||
# Required by Bubblemail - Email Notifications (GNOME Extension)
|
||||
- bubblemail
|
||||
state: present
|
||||
become: true
|
||||
Reference in New Issue
Block a user