The MX Linux team has officially released MX Linux 25 “Infinity”, the next major version of the popular Debian-based distribution, now built on Debian 13 “Trixie”.
The new version ships in several editions—Xfce, KDE Plasma, and Fluxbox—each updated to their latest stable versions. The release includes Xfce 4.20, Plasma 6.3.6, and Fluxbox 1.3.7.
Most ISO images come with the Linux kernel 6.12 LTS from Debian’s stable repositories, while the AHS (Advanced Hardware Support) variants feature the 6.16 Liquorix kernel for better performance on newer hardware.
The major change is that all releases now include systemd by default, although SysVinit variants of the Xfce and Fluxbox editions are still available for users who prefer the traditional init system. According to developers, this will improve compatibility and simplify future maintenance.



To add a little: systemd is just a service manager. It manages services.
You can plug systemd-journald into it and now it does logging too. Or you can use rsyslog, or both together, or something else entirely.
You can treat your network connections like services (technically units) with systemd-networkd. Or you can use NetworkManager. Or both, or neither, etc.
You can treat mount points as units because somebody said “let’s define mounts in a new kind of unit file and have systemd initiate them as a service” or you could continue using fstab.
You could use systemd-resolved but you don’t have to. You could use systemd-udevd (you probably already do because most distros run it by default, though it still pulls from /etc/udev) but you don’t have to.
These are all optional extensions.
It turns out it’s really handy to have a robust service management backbone because you can plug any number of things into it, as long as you reimagine those things as services (again, technically units).
So what’s the controversy?
As far as I can tell, it boils down to “they shouldn’t have made systemd-networkd only be able to talk to systemd, they should have made it work with every possible init system”.
Which is understandable, but not really defensible.