Install more packages

main
Micke Nordin 3 months ago
parent 03a0c71104
commit 129b4d1571
Signed by: micke
GPG Key ID: 0DA0A7A5708FE257

@ -18,9 +18,11 @@
- composer
- cups
- curl
- dbus-broker
- dia
- evince
- fcitx5
- file-roller
- flameshot
- foot
- git
@ -29,9 +31,11 @@
- inkscape
- isort
- libreoffice
- lightdm
- lxpolkit
- mesa-utils
- mesa-utils-bin
- meson
- network-manager-gnome
- network-manager-config-connectivity-debian
- nextcloud-desktop
@ -40,9 +44,13 @@
- npm
- pass
- pavucontrol
- pipewire
- pipewire-audio
- pipx
- plocate
- plymouth
- plymouth-themes
- plymouth-label
- pkexec
- puppet-lint
- python3-deepdiff
@ -51,6 +59,7 @@
- qt5ct
- rsync
- scdaemon
- shfmt
- simple-scan
- sway
- sway-backgrounds
@ -62,17 +71,18 @@
- tsocks
- unzip
- waybar
- waypipe
- wdisplays
- wget
- wl-clipboard
- wlr-randr
- wofi
- xdg-desktop-portal
- xdg-desktop-portal-gtk
- xdg-desktop-portal-wlr
- xwayland
- yapf3
- yq
- zathura
- zsh
state: latest
update_cache: true

@ -14,18 +14,19 @@
path: '{{key_path}}'
register: key
- name: Get key
become: true
ansible.builtin.command:
chdir: /tmp
cmd: wget -O ./keyring.gpg '{{ key_url }}'
creates: /tmp/keyring.gpg
when: not key.stat.exists
- name: Dearmor key
ansible.builtin.command:
chdir: /tmp
cmd: gpg --dearmor -o {{ key_path }} ./keyring.gpg
cmd: wget -O '{{ key_path }}' '{{ key_url }}'
creates: '{{key_path}}'
become: true
when: not key.stat.exists
# - name: Dearmor key
# ansible.builtin.command:
# chdir: /tmp
# cmd: gpg --dearmor -o {{ key_path }} ./keyring.gpg
# creates: '{{key_path}}'
# become: true
# when: not key.stat.exists
- name: install repo
become: true
ansible.builtin.template:
@ -38,7 +39,7 @@
autoclean: true
autoremove: true
install_recommends: true
pkg: [firefox-mozilla-build]
pkg: [firefox]
state: latest
update_cache: true
- name: Get host app

Loading…
Cancel
Save