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
All checks were successful
Nix Format Check / check-format (pull_request) Successful in 36s
This commit is contained in:
parent
0cb31915e3
commit
bf59061611
@ -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
|
||||
|
@ -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:
|
||||
|
Loading…
x
Reference in New Issue
Block a user