Some checks failed
Nix Format Check / check-format (push) Failing after 39s
49 lines
1.5 KiB
YAML
49 lines
1.5 KiB
YAML
- name: Include workstation symlinks tasks
|
|
ansible.builtin.import_tasks: tasks/workstations/symlinks.yml
|
|
|
|
- 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: Include snaps tasks
|
|
ansible.builtin.import_tasks: tasks/workstations/snaps.yml
|
|
|
|
- name: Include VSCode tasks
|
|
ansible.builtin.import_tasks: tasks/workstations/vscode.yml
|
|
become: true
|
|
|
|
- name: Include Zen browser tasks
|
|
ansible.builtin.import_tasks: tasks/workstations/zen-browser.yml
|
|
vars:
|
|
browser_name: "zen"
|
|
browser_executable: "zen"
|
|
|
|
- name: Include 1Password Zen Browser tasks
|
|
ansible.builtin.import_tasks: tasks/workstations/1password-zen-browser.yml
|
|
|
|
- name: Include Firefox PWA tasks
|
|
ansible.builtin.import_tasks: tasks/workstations/firefoxpwa.yml
|
|
|
|
- name: Include Ulauncher tasks
|
|
ansible.builtin.import_tasks: tasks/workstations/ulauncher.yml
|
|
|
|
- name: Include MegaSync tasks
|
|
ansible.builtin.import_tasks: tasks/workstations/megasync.yml
|
|
|
|
- name: Ensure common packages are installed
|
|
ansible.builtin.package:
|
|
name:
|
|
###### THE FOLLOWING PACKAGES ARE DISABLED DUE TO MISSING ON UBUNTU REPOS ######
|
|
# Steam and it's dependencies
|
|
# - steam
|
|
# - steam-devices
|
|
################################################################################
|
|
# Statistics HUD for gaming
|
|
- mangohud
|
|
# Used for VSCode Extensions
|
|
- nodejs
|
|
state: present
|
|
become: true
|