From 3f6fc85f08ab43379b93b14b30c4015969030fc0 Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Thu, 1 Jul 2021 22:16:25 +0100 Subject: [PATCH] Install chaotic AUR --- files/pacman.conf | 3 +++ tasks/packages.yml | 9 +++++++++ 2 files changed, 12 insertions(+) diff --git a/files/pacman.conf b/files/pacman.conf index 7191fa9..14a8048 100644 --- a/files/pacman.conf +++ b/files/pacman.conf @@ -108,3 +108,6 @@ Server = https://mirror.biocrafting.net/archlinux/archzfs/$repo/x86_64 Server = https://mirror.in.themindsmaze.com/archzfs/$repo/x86_64 # Mirror - US Server = https://zxcvfdsa.com/archzfs/$repo/$arch + +[chaotic-aur] +Include = /etc/pacman.d/chaotic-mirrorlist diff --git a/tasks/packages.yml b/tasks/packages.yml index 7ee7cd2..3d12934 100644 --- a/tasks/packages.yml +++ b/tasks/packages.yml @@ -13,6 +13,7 @@ - 8A8F901A # Sublime Text - 9D5F1C051D146843CDA4858BDE64825E7CBC0D51 # ArchStrike - DDF7DB817396A49B2A2723F7403BD972F75D9D76 # archzfs + - 3056513887B78AEB # chaotic-AUR when: item not in repo_keys.stdout - name: Install pacman config @@ -45,6 +46,14 @@ become: true become_user: aur_builder +- name: Install chaotic AUR + pacman: + name: "{{ item }}" + become: true + loop: + - https://cdn-mirror.chaotic.cx/chaotic-aur/chaotic-keyring.pkg.tar.zst + - https://cdn-mirror.chaotic.cx/chaotic-aur/chaotic-mirrorlist.pkg.tar.zst + - name: Update package repositories pacman: update_cache: yes