zeroconf: enable publishing The previous config only enabled looking up other hosts. Now other hosts can ping this one.
Alan Pearce alan@alanpearce.eu
Wed, 26 Aug 2020 14:05:30 +0200
1 files changed, 7 insertions(+), 0 deletions(-)
M system/settings/services/zeroconf.nix → system/settings/services/zeroconf.nix
@@ -4,6 +4,13 @@ { services.avahi = { enable = true; nssmdns = true; ipv6 = true; + publish = { + enable = true; + addresses = true; + domain = true; + userServices = true; + workstation = true; + }; }; systemd.services.avahi-daemon.wantedBy = lib.mkForce []; systemd.timers.avahi-daemon = {