adds docker ce
All checks were successful
Nix Format Check / check-format (pull_request) Successful in 39s

adds pano extension alpha
This commit is contained in:
2025-01-20 11:02:00 +01:00
parent 9442cba158
commit 02c70010bd
5 changed files with 98 additions and 8 deletions

View File

@@ -2,6 +2,9 @@
gather_facts: true
tasks:
- name: Include symlinks tasks
ansible.builtin.import_tasks: tasks/symlinks.yml
- name: Include VSCode tasks
ansible.builtin.import_tasks: tasks/vscode.yml
when: hostname in ['mennos-laptop', 'mennos-desktop']
@@ -21,17 +24,17 @@
when: hostname in ['mennos-laptop', 'mennos-desktop']
become: true
- name: Include symlinks tasks
ansible.builtin.import_tasks: tasks/symlinks.yml
- name: Include flatpaks tasks
ansible.builtin.import_tasks: tasks/flatpaks.yml
when: hostname in ['mennos-laptop', 'mennos-desktop']
- name: Include Docker tasks
ansible.builtin.import_tasks: tasks/docker.yml
become: true
- name: Gather package facts
ansible.builtin.package_facts:
manager: auto
become: true
- name: Include GNOME Extensions tasks
ansible.builtin.import_tasks: tasks/gnome-extensions.yml
- name: Ensure common packages are installed
ansible.builtin.package:
@@ -42,5 +45,14 @@
- trash-cli
- curl
- wget
- flatpak
# Required by Pano - Clipboard Manager (GNOME Extension)
- libgda
- libgda-sqlite
state: present
become: true
become: true
- name: Include flatpaks tasks
ansible.builtin.import_tasks: tasks/flatpaks.yml
when: hostname in ['mennos-laptop', 'mennos-desktop']