Another overdue checkpoint

This commit is contained in:
Jonathan Cremin 2022-04-25 12:48:36 +01:00
parent 692269f9ff
commit c501435876
25 changed files with 182 additions and 81 deletions

View file

@ -9,7 +9,13 @@
notify: enable boost
become: yes
- name: Disable SELinux because it's a nightmare with Podman
ansible.builtin.lineinfile:
path: /etc/selinux/config
regexp: '^SELINUX='
line: SELINUX=disabled
become: yes
- name: Import dnf keys
rpm_key:
state: present
@ -18,7 +24,8 @@
- https://packagecloud.io/gpg.key
- https://packages.microsoft.com/keys/microsoft.asc
- https://rpm.releases.teleport.dev/RPM-GPG-KEY-teleport
# - https://downloads.1password.com/linux/keys/1password.asc
- https://downloads.1password.com/linux/keys/1password.asc
- https://keys.openpgp.org/vks/v1/by-fingerprint/034F7776EF5E0C613D2F7934D29FBD5F93C0CFC3 # Librewolf
become: yes
- name: Add dnf repos
@ -31,6 +38,7 @@
- vscode.repo
- teleport.repo
- 1password.repo
- rpm.librewolf.net.repo
become: yes
- name: Install common desktop dnf packages
@ -40,7 +48,6 @@
- power-profiles-daemon # Adds power settings in gnome-settings-center
- chrome-gnome-shell
- celluloid
- gnome-extensions-app
- cheese
- geary
- pavucontrol
@ -61,6 +68,8 @@
- 1password
- code
- teleport
- librewolf
- mangohud
enablerepo:
- rpmfusion-free
- rpmfusion-nonfree-steam
@ -85,16 +94,37 @@
- nl.g4d.Girens
- tech.feliciano.pocket-casts
- org.gnome.TextEditor
- com.mattjakeman.ExtensionManager
- md.obsidian.Obsidian
- org.pipewire.Helvum
state: present
remote: flathub
method: user
- name: Add the knapsu flatpak repository remote to the user installation
flatpak_remote:
name: knapsu
state: present
flatpakrepo_url: https://flatpak.knapsu.eu/plex-media-player.flatpakrepo
method: user
- name: Install flatpaks from knapsu
flatpak:
name:
- tv.plex.PlexMediaPlayer
state: present
remote: knapsu
method: user
- name: Install remote rpms
dnf:
name:
- https://zoom.us/client/latest/zoom_x86_64.rpm
- https://github.com/hensm/fx_cast/releases/download/v0.1.0/fx_cast_bridge-0.1.0-x64.rpm
- https://cdn.zoom.us/prod/v5.10.4/zoom_x86_64.rpm
- https://github.com/hensm/fx_cast/releases/download/v0.2.0/fx_cast_bridge-0.2.0-x64.rpm
- https://github.com/Kong/insomnia/releases/download/core%402021.5.3/Insomnia.Core-2021.5.3.rpm
- https://github.com/openaudible/openaudible/releases/download/v3.4.3/OpenAudible_3.4.3_x86_64.rpm
- https://github.com/Mastermindzh/tidal-hifi/releases/download/2.7.1/tidal-hifi-2.7.1.x86_64.rpm
- https://github.com/iongion/podman-desktop-companion/releases/download/4.0.3-rc.2/podman-desktop-companion-x86_64-4.0.3-rc.2.rpm
state: present
disable_gpg_check: 1
become: yes