e80d978510
- Tilføj Tailscale repo i tasks/repos.yml - Aktiver og start tailscaled via systemd i tasks/system.yml - Tilføj tailscale, kitty, lsd og glow til dnf_packages.yml - Tilføj tailscale up som manuelt trin i README
83 lines
2.4 KiB
YAML
83 lines
2.4 KiB
YAML
---
|
|
# 1Password
|
|
- name: 1Password - GPG nøgle
|
|
ansible.builtin.rpm_key:
|
|
key: https://downloads.1password.com/linux/keys/1password.asc
|
|
state: present
|
|
|
|
- name: 1Password - repo
|
|
ansible.builtin.yum_repository:
|
|
name: 1password
|
|
description: 1Password Stable Channel
|
|
baseurl: https://downloads.1password.com/linux/rpm/stable/$basearch
|
|
enabled: true
|
|
gpgcheck: true
|
|
repo_gpgcheck: true
|
|
gpgkey: https://downloads.1password.com/linux/keys/1password.asc
|
|
state: present
|
|
|
|
# Sublime Text
|
|
- name: Sublime Text - GPG nøgle
|
|
ansible.builtin.rpm_key:
|
|
key: https://download.sublimetext.com/sublimehq-rpm-pub.gpg
|
|
state: present
|
|
|
|
- name: Sublime Text - repo
|
|
ansible.builtin.command:
|
|
cmd: dnf config-manager addrepo --from-repofile=https://download.sublimetext.com/rpm/stable/x86_64/sublime-text.repo
|
|
args:
|
|
creates: /etc/yum.repos.d/sublime-text.repo
|
|
|
|
# LibreWolf
|
|
- name: LibreWolf - repo
|
|
ansible.builtin.command:
|
|
cmd: dnf config-manager addrepo --from-repofile=https://repo.librewolf.net/librewolf.repo
|
|
args:
|
|
creates: /etc/yum.repos.d/librewolf.repo
|
|
|
|
# Jottacloud
|
|
- name: Jottacloud - repo
|
|
ansible.builtin.yum_repository:
|
|
name: jotta-cli
|
|
description: Jottacloud CLI
|
|
baseurl: https://repo.jotta.cloud/redhat
|
|
gpgcheck: true
|
|
gpgkey: https://repo.jotta.cloud/public.gpg
|
|
state: present
|
|
|
|
# VSCodium
|
|
- name: VSCodium - repo
|
|
ansible.builtin.yum_repository:
|
|
name: gitlab.com_paulcarroty_vscodium_repo
|
|
description: gitlab.com_paulcarroty_vscodium_repo
|
|
baseurl: https://paulcarroty.gitlab.io/vscodium-deb-rpm-repo/rpms/
|
|
enabled: true
|
|
gpgcheck: true
|
|
repo_gpgcheck: true
|
|
gpgkey: https://gitlab.com/paulcarroty/vscodium-deb-rpm-repo/raw/master/pub.gpg
|
|
metadata_expire: 1h
|
|
state: present
|
|
|
|
# Tailscale
|
|
- name: Tailscale - repo
|
|
ansible.builtin.command:
|
|
cmd: dnf config-manager addrepo --from-repofile=https://pkgs.tailscale.com/stable/fedora/tailscale.repo
|
|
args:
|
|
creates: /etc/yum.repos.d/tailscale.repo
|
|
|
|
# Cider
|
|
- name: Cider - GPG nøgle
|
|
ansible.builtin.rpm_key:
|
|
key: https://repo.cider.sh/RPM-GPG-KEY
|
|
state: present
|
|
|
|
- name: Cider - repo
|
|
ansible.builtin.yum_repository:
|
|
name: cidercollective
|
|
description: Cider Collective Repository
|
|
baseurl: https://repo.cider.sh/rpm/RPMS
|
|
enabled: true
|
|
gpgcheck: true
|
|
gpgkey: https://repo.cider.sh/RPM-GPG-KEY
|
|
state: present
|