add mutt and additional packages to the base system

This commit is contained in:
Morgan McMillian 2024-06-23 07:31:40 -07:00
parent 268a15de9b
commit 2c75f73cd8
2 changed files with 31 additions and 2 deletions

View file

@ -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

View file

@ -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