Files
Kapisi/roles/Tachikoma/tasks/main.yml

52 lines
957 B
YAML
Raw Normal View History

---
2025-04-15 14:03:32 -05:00
- name: Install Tachikoma packages
become: true
ansible.builtin.package:
name:
- wifi-menu # Needed XFCE4 add-ons
- conky
- xfce4
- xfce4-goodies
- xfce4-screenshooter
- xscreensaver
- alsamixer
- sshfs # Mount helpers
- mtpfs
- libmtp
- libreoffice-still # Office
- hunspell
- hunspell-en_us
- keepassxc
- weechat # Clients
- elinks
- google-chrome
- vlc # Multimedia
- sound-juicer
- obs-studio
- kdenlive
- gimp
- cups # Printing
- brother-mfc-j430w
- brscan4
- xsane
2025-04-15 14:03:32 -05:00
- name: Remove deprecated packages
become: true
ansible.builtin.package:
name:
- chromium
- keepassx
- kpcli
- irssi
- lynx
2025-04-15 14:03:32 -05:00
- name: Enable services
become: true
ansible.builtin.service:
name: "{{ item }}"
state: running
enabled: true
with:
- cups.service