refactor: update Flatpak and pipx tasks to clarify package installation and removal naming
All checks were successful
Nix Format Check / check-format (pull_request) Successful in 36s

This commit is contained in:
Menno van Leeuwen 2025-01-21 00:18:24 +01:00
parent 0cb31915e3
commit bf59061611
Signed by: vleeuwenmenno
SSH Key Fingerprint: SHA256:OJFmjANpakwD3F2Rsws4GLtbdz1TJ5tkQF0RZmF0TRE
2 changed files with 3 additions and 4 deletions

View File

@ -52,13 +52,13 @@
- dev.zed.Zed
- com.discordapp.Discord
- name: Install desired Flatpak applications
- name: Install/Upgrade Flatpak packages
community.general.flatpak:
name: "{{ item }}"
state: present
loop: "{{ desired_flatpaks }}"
- name: Remove undesired Flatpak applications
- name: Remove undesired Flatpak packages
community.general.flatpak:
name: "{{ item }}"
state: absent

View File

@ -10,12 +10,11 @@
- ansible-lint
- shyaml
- name: Install pipx packages
- name: Install/Upgrade pipx packages
community.general.pipx:
name: "{{ item }}"
state: present
loop: "{{ desired_pipx_packages }}"
when: item not in installed_pipx_packages.stdout_lines
- name: Remove undesired pipx packages
community.general.pipx: