add mutt and additional packages to the base system
This commit is contained in:
parent
268a15de9b
commit
2c75f73cd8
2 changed files with 31 additions and 2 deletions
|
@ -4,4 +4,18 @@ cd /etc/yum.repos.d || exit 1
|
||||||
sudo wget https://pkgs.tailscale.com/stable/fedora/tailscale.repo
|
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
|
sudo flatpak remote-add --if-not-exists flathub https://dl.flathub.org/repo/flathub.flatpakrepo
|
||||||
rpm-ostree override remove firefox firefox-langpacks
|
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
|
||||||
|
|
|
@ -25,6 +25,9 @@
|
||||||
- org.kde.gwenview
|
- org.kde.gwenview
|
||||||
- org.kde.okular
|
- org.kde.okular
|
||||||
- com.github.unrud.VideoDownloader
|
- com.github.unrud.VideoDownloader
|
||||||
|
- org.kde.neochat
|
||||||
|
- im.nheko.Nheko
|
||||||
|
- chat.delta.desktop
|
||||||
state: present
|
state: present
|
||||||
remote: flathub
|
remote: flathub
|
||||||
become: true
|
become: true
|
||||||
|
@ -103,8 +106,20 @@
|
||||||
dest: "{{ home_dir }}/bin/bridge"
|
dest: "{{ home_dir }}/bin/bridge"
|
||||||
mode: "0755"
|
mode: "0755"
|
||||||
|
|
||||||
- name: Setup msmtp config
|
- name: Link msmtp config
|
||||||
ansible.builtin.file:
|
ansible.builtin.file:
|
||||||
src: "{{ home_dir }}/Sync/.msmtprc"
|
src: "{{ home_dir }}/Sync/.msmtprc"
|
||||||
dest: "{{ home_dir }}/.msmtprc"
|
dest: "{{ home_dir }}/.msmtprc"
|
||||||
state: link
|
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
|
||||||
|
|
Loading…
Reference in a new issue