Module.jackdbus-detect pipewire in nixOs

I was looking for error in my journalctl and found this:

pipewire[2236]: mod.jackdbus-detect: Failed to receive jackdbus reply: org.freedesktop.DBus.Error.ServiceUnknown: The name org.jackaudio.service was not provided by any .service files>

I searched and found this forum from linux mint but i have no idea how to convert the knowledge to nixOs: How can I fix the mod.jackdbus-detect fail message when running systemctl --user status pipewire - Linux Mint Forums

How can I set module.jackdbus-detect to false in pipewire configuration?

That is my configuration.nix:

sound.enable = true;
services.pipewire = {
enable = true;
package = pkgs.pipewire;
pulse.enable = true;
wireplumber.enable = true;
alsa = {
enable = true;
support32Bit = true;
};
};

Thank you!