From 82aafc287ef714ab33b106b7ae8747da0f6123cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Wed, 10 Apr 2024 11:20:45 +0200 Subject: [PATCH] also enable LLMNR --- nixosModules/clanCore/networking.nix | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/nixosModules/clanCore/networking.nix b/nixosModules/clanCore/networking.nix index ec8f7524..36b5253c 100644 --- a/nixosModules/clanCore/networking.nix +++ b/nixosModules/clanCore/networking.nix @@ -74,8 +74,14 @@ systemd.services.NetworkManager-wait-online.enable = false; systemd.network.wait-online.enable = false; - systemd.network.networks."99-ethernet-default-dhcp".networkConfig.MulticastDNS = lib.mkDefault "yes"; - systemd.network.networks."99-wireless-client-dhcp".networkConfig.MulticastDNS = lib.mkDefault "yes"; + systemd.network.networks."99-ethernet-default-dhcp".networkConfig = { + MulticastDNS = lib.mkDefault "yes"; + LLMNR = lib.mkDefault "yes"; + }; + systemd.network.networks."99-wireless-client-dhcp".networkConfig = { + MulticastDNS = lib.mkDefault "yes"; + LLMNR = lib.mkDefault "yes"; + }; # Use networkd instead of the pile of shell scripts networking.useNetworkd = lib.mkDefault true;