This commit is contained in:
2024-07-21 13:14:22 -07:00
parent 7f2a9dc1d8
commit 82cc422756
6 changed files with 59 additions and 2 deletions

View File

@@ -0,0 +1,25 @@
---
- name: Update apt cache
apt:
update_cache: yes
- name: Install required packages
apt:
name:
- python3-launchpadlib
- software-properties-common
state: present
- name: Add Nicotine+ PPA repository
apt_repository:
repo: 'ppa:nicotine-team/stable'
state: present
- name: Update apt cache again
apt:
update_cache: yes
- name: Install Nicotine+
apt:
name: nicotine
state: present

View File

@@ -0,0 +1 @@
---

View File

@@ -93,8 +93,6 @@ ui_packages:
- fonts-hack
flatpak_packages:
- org.nicotine_plus.Nicotine
- org.signal.Signal
- net.ankiweb.Anki
- org.torproject.torbrowser-launcher

View File

@@ -0,0 +1,26 @@
---
- name: Download and convert Signal public software signing key
shell: |
wget -O- https://updates.signal.org/desktop/apt/keys.asc | gpg --dearmor -o /tmp/signal-desktop-keyring.gpg
args:
creates: /tmp/signal-desktop-keyring.gpg
- name: Move gpg key to apt keyring directory
copy:
src: /tmp/signal-desktop-keyring.gpg
dest: /usr/share/keyrings/signal-desktop-keyring.gpg
remote_src: yes
- name: Add Signal repository
copy:
content: "deb [arch=amd64 signed-by=/usr/share/keyrings/signal-desktop-keyring.gpg] https://updates.signal.org/desktop/apt xenial main\n"
dest: /etc/apt/sources.list.d/signal-xenial.list
- name: Update apt cache
apt:
update_cache: yes
- name: Install Signal Desktop
apt:
name: signal-desktop
state: present

View File

@@ -0,0 +1 @@
---

View File

@@ -29,3 +29,9 @@
- role: brave
tags: brave_tag
- role: signal
tags: signal_tag
- role: nicotine
tags: nicotine_tag