Add Ansible configuration and remove NixOS #1

Merged
vleeuwenmenno merged 36 commits from ansible into master 2025-01-22 15:30:41 +01:00
2 changed files with 3 additions and 4 deletions
Showing only changes of commit bf59061611 - Show all commits

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: