From 2c75f73cd8a60a32e867733db46a3a26bcaf0dd0 Mon Sep 17 00:00:00 2001 From: Morgan McMillian Date: Sun, 23 Jun 2024 07:31:40 -0700 Subject: [PATCH] add mutt and additional packages to the base system --- fedora-atomic/kinoite-setup.sh | 16 +++++++++++++++- fedora-atomic/main.yml | 17 ++++++++++++++++- 2 files changed, 31 insertions(+), 2 deletions(-) diff --git a/fedora-atomic/kinoite-setup.sh b/fedora-atomic/kinoite-setup.sh index 8db217f..ede6b3f 100755 --- a/fedora-atomic/kinoite-setup.sh +++ b/fedora-atomic/kinoite-setup.sh @@ -4,4 +4,18 @@ cd /etc/yum.repos.d || exit 1 sudo wget https://pkgs.tailscale.com/stable/fedora/tailscale.repo sudo flatpak remote-add --if-not-exists flathub https://dl.flathub.org/repo/flathub.flatpakrepo rpm-ostree override remove firefox firefox-langpacks -rpm-ostree install distrobox tailscale syncthing ansible falkon python3-keyring wl-clipboard kate mercurial mercurial-rust +rpm-ostree install \ + distrobox tailscale \ + syncthing \ + ansible \ + falkon \ + python3-keyring \ + wl-clipboard \ + kate \ + mercurial \ + mercurial-rust \ + source-foundry-hack-fonts \ + fastfetch \ + mutt \ + msmtp \ + lynx diff --git a/fedora-atomic/main.yml b/fedora-atomic/main.yml index 346181a..5040f2b 100644 --- a/fedora-atomic/main.yml +++ b/fedora-atomic/main.yml @@ -25,6 +25,9 @@ - org.kde.gwenview - org.kde.okular - com.github.unrud.VideoDownloader + - org.kde.neochat + - im.nheko.Nheko + - chat.delta.desktop state: present remote: flathub become: true @@ -103,8 +106,20 @@ dest: "{{ home_dir }}/bin/bridge" mode: "0755" - - name: Setup msmtp config + - name: Link msmtp config ansible.builtin.file: src: "{{ home_dir }}/Sync/.msmtprc" dest: "{{ home_dir }}/.msmtprc" state: link + + - name: Link mutt config + ansible.builtin.file: + src: "{{ home_dir }}/Sync/.config/mutt" + dest: "{{ config_dir }}/mutt" + state: link + + - name: Link mailcap config + ansible.builtin.file: + src: "{{ home_dir }}/dotfiles/.mailcap" + dest: "{{ home_dir }}/.mailcap" + state: link