From aa305f7bd1b3b3c828f0370a327cbc71a6feda47 Mon Sep 17 00:00:00 2001 From: xenia Date: Mon, 9 Jun 2025 13:06:38 +0200 Subject: [PATCH] enable avahi nssmdns properly for foxhut --- nixos/machines/foxhut/machine.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/nixos/machines/foxhut/machine.nix b/nixos/machines/foxhut/machine.nix index 6bb6bbae..11c74ad0 100644 --- a/nixos/machines/foxhut/machine.nix +++ b/nixos/machines/foxhut/machine.nix @@ -116,7 +116,11 @@ in { boot.supportedFilesystems."fuse.sshfs" = true; services.printing.enable = true; - services.avahi.enable = true; + services.avahi = { + enable = true; + nssmdns = true; + openFirewall = true; + }; virtualisation.docker.enable = true;