fix packages

This commit is contained in:
Tyler Starr 2023-07-03 23:10:25 -07:00
parent 1b9ab825ce
commit b0f2f40441
2 changed files with 13 additions and 2 deletions

View File

@ -2,7 +2,7 @@
apt: apt:
name: name:
- freecad # General purpose 3D CAD modeler - freecad # General purpose 3D CAD modeler
- gqrx #- gqrx
state: present state: present
become: true become: true

View File

@ -21,4 +21,15 @@
become: true become: true
- name: Install chezmoi - name: Install chezmoi
ansible.builtin.shell: sh -c "$(curl -fsLS get.chezmoi.io)" -- -b $HOME/.local/bin # Manage your dotfiles across multiple machines, securely ansible.builtin.shell: |
sh -c "$(curl -fsLS get.chezmoi.io)" -- -b $HOME/.local/bin # Manage your dotfiles across multiple machines, securely
- name: Add flatpak remote
ansible.builtin.shell: |
flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
- name: Enable Multi-Arch
ansible.builtin.shell: |
dpkg --add-architecture i386
apt update
become: true