From 406de9c3bfc6c3a33e08ce44bd85ce8a31f0fafd Mon Sep 17 00:00:00 2001 From: matthewcroughan Date: Wed, 13 Jul 2022 16:49:27 +0100 Subject: [PATCH] configuration: more verbose avahi definition --- configuration.nix | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/configuration.nix b/configuration.nix index 3d3ebbd..388200d 100644 --- a/configuration.nix +++ b/configuration.nix @@ -26,5 +26,14 @@ # Enable Avahi mDNS, you should be able to reach http://visionfive-nix:19999 # to reach netdata when booted - services.avahi.enable = true; + services.avahi = { + openFirewall = true; + nssmdns = true; # Allows software to use Avahi to resolve. + enable = true; + publish = { + enable = true; + addresses = true; + workstation = true; + }; + }; }