From c822e0c34fac14b6d037ada62e74af09a4bcea40 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Sun, 29 Oct 2023 02:27:37 +0200 Subject: [PATCH] audio: disable systemd-resolved mDNS as it decreases reliability --- modules/audio.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/modules/audio.nix b/modules/audio.nix index 685450e..8a14e5d 100644 --- a/modules/audio.nix +++ b/modules/audio.nix @@ -59,6 +59,11 @@ in pulse.enable = true; } ]; + + # makes avahi unreliable + resolved.extraConfig = '' + MulticastDNS=no + ''; }; # TODO: rebuild using programs.dconf.profiles, see https://github.com/NixOS/nixpkgs/pull/234615