There is a new pull request by Animeshz against master on the void-packages repository https://github.com/Animeshz/void-packages wireplumber https://github.com/void-linux/void-packages/pull/36650 wireplumber: export $XDG_STATE_HOME to a persistent location #### Testing the changes - I tested the changes in this PR: **YES**|**briefly**|**NO** In #36416 I've exported HOME to `/var/run/pipewire` but that directory gets recreated every reboot, it was able to persist volume and other configurations when the service restarts but not across system reboots. `wireplumber` stores the state configuration in `${XDG_STATE_HOME:-$HOME/.local/state}/wireplumber`. I recently also found, `pipewire-media-session` (the builtin media router) utilized `/var/lib/pipewire` as well to persist its state across reboot. So this simply changes the export to do the same. A patch file from https://github.com/void-linux/void-packages/pull/36650.patch is attached