linux-mint/mint.yml
2022-07-17 20:53:25 +02:00

80 lines
2.2 KiB
YAML

---
- name: Mint Packages
hosts: all
tasks:
- name: Install Basic Packages
apt:
name:
# powersave
- tlp
- tlp-rdw
# Speed up program start
- preload
# mediacodecs and fonts
- ubuntu-restricted-extras
- libavcodec-extra
- libdvd-pkg
# terminus font
- fonts-terminus
# share desk
- x11vnc
# useful other stuff
- spectre-meltdown-checker
- pwgen
- arj
- p7zip
- unace
- unadf
- bvi
- fdupes
- radeontop
- debootstrap
- geoip-bin
# tools for android-smartphones/LineageOS
- heimdall-flash
- android-tools-adb
- android-tools-fastboot
- android-tools-mkbootimg
# OnlineBanking
- hibiscus
# dconf-gui
- dconf-editor
# Media
- easytag
- audacity
- asunder
update_cache: yes
install_recommends: no
- name: Install Flatpaks
community.general.flatpak:
name:
- org.signal.Signal
- com.nextcloud
- com.github.Eloston.UngoogledChromium
- io.gitlab.librewolf-community
- com.vscodium.codium
- com.github.wwmm.pulseeffects
- org.ksnip.ksnip
- org.gnome.Evolution
- org.winehq.Wine
- com.github.tchx84.Flatseal
state: present
method: system
- name: remove dhcpcd because NetworkManager is doing the job
command: systemctl disable dhcpcd
args:
removes: /etc/systemd/system/multi-user.target.wants/dhcpcd.service
- name: enable Mint Autoupdate
command: systemctl enable mintupdate-automation-upgrade.timer
args:
creates: /etc/systemd/system/timers.target.wants/mintupdate-automation-upgrade.timer
- name: enable Mint Autoupdate Cleanup
command: systemctl enable mintupdate-automation-autoremove.timer
args:
creates: /etc/systemd/system/timers.target.wants/mintupdate-automation-autoremove.timer