Remove explicit i3 package removal task; rely on session-based exclusion

This commit is contained in:
Fabio Scotto di Santolo
2026-04-22 10:42:51 +02:00
parent 4632f20c87
commit 669bf1cdb2
2 changed files with 1 additions and 32 deletions

View File

@@ -26,31 +26,6 @@ host_packages:
- tlp-rdw - tlp-rdw
- upower - upower
host_remove_packages:
- arandr
- autorandr
- feh
- i3
- i3blocks
- i3blocks-blocklets
- i3lock-color
- i3status
- dunst
- network-manager-applet
- rofi
- scrot
- setxkbmap
- blueman
- volumeicon
- xclip
- xfce-polkit
- xfce4-clipman-plugin
- xfce4-screenshooter
- xkbutils
- xorg-fonts
- xorg-minimal
- xss-lock
host_enabled_services: host_enabled_services:
- tlp - tlp

View File

@@ -73,10 +73,4 @@
state: present state: present
update_cache: false update_cache: false
- name: Remove host-specific packages on Void Linux
tags: [packages]
community.general.xbps:
name: "{{ (host_remove_packages | default([])) | unique }}"
state: absent
update_cache: false
when: (host_remove_packages | default([])) | length > 0