Fix annoying 'refused connection' logs spamming dmesg due to spotify connect

This commit is contained in:
2026-03-01 12:33:53 -08:00
parent 2ed58e1ec5
commit e9e925eb46
4 changed files with 55 additions and 0 deletions

View File

@@ -15,4 +15,12 @@ in
incus-lts = prev.incus-lts.overrideAttrs (old: {
nativeBuildInputs = (old.nativeBuildInputs or [ ]) ++ [ prev.writableTmpDirAsHomeHook ];
});
# Add --zeroconf-port support to Spotify Connect plugin so librespot
# binds to a fixed port that can be opened in the firewall.
music-assistant = prev.music-assistant.overrideAttrs (old: {
patches = (old.patches or [ ]) ++ [
../patches/music-assistant-zeroconf-port.patch
];
});
}