From b7237abc08f10586fc4d87d65b10ad881e856b39 Mon Sep 17 00:00:00 2001 From: Alexey Shmalko Date: Wed, 7 Sep 2016 14:21:45 +0300 Subject: [PATCH] avahi-daemon: remove default browse-domains These domains are not actually default but examples. See https://github.com/lathiat/avahi/blob/master/avahi-daemon/avahi-daemon.conf#L24 for default config. --- nixos/modules/services/networking/avahi-daemon.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nixos/modules/services/networking/avahi-daemon.nix b/nixos/modules/services/networking/avahi-daemon.nix index 7650f45c5570..2d3ce34a4e3a 100644 --- a/nixos/modules/services/networking/avahi-daemon.nix +++ b/nixos/modules/services/networking/avahi-daemon.nix @@ -75,7 +75,8 @@ in }; browseDomains = mkOption { - default = [ "0pointer.de" "zeroconf.org" ]; + default = [ ]; + example = [ "0pointer.de" "zeroconf.org" ]; description = '' List of non-local DNS domains to be browsed. '';