From 36cd114e72fc70cab4c451424eb70a551f480bfd Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Wed, 16 Oct 2024 14:43:36 +0200 Subject: [PATCH] feat(sgx): enable IPv4 and IPv6 support for Avahi Updated Avahi service configuration to support both IPv4 and IPv6 addressing. This change includes enabling nssmdns4 and nssmdns6, along with setting ipv4 and ipv6 to true. --- systems/x86_64-linux/sgx/fileserver.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/systems/x86_64-linux/sgx/fileserver.nix b/systems/x86_64-linux/sgx/fileserver.nix index e05672c..3a1ae2f 100644 --- a/systems/x86_64-linux/sgx/fileserver.nix +++ b/systems/x86_64-linux/sgx/fileserver.nix @@ -20,7 +20,10 @@ services.avahi = { enable = true; - nssmdns = true; + nssmdns4 = true; + nssmdns6 = true; + ipv6 = true; + ipv4 = true; publish = { enable = true; userServices = true;