also enable LLMNR

This commit is contained in:
Jörg Thalheim
2024-04-10 11:20:45 +02:00
committed by Mic92
parent d049067096
commit d974da9fee

View File

@@ -74,8 +74,14 @@
systemd.services.NetworkManager-wait-online.enable = false; systemd.services.NetworkManager-wait-online.enable = false;
systemd.network.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-ethernet-default-dhcp".networkConfig = {
systemd.network.networks."99-wireless-client-dhcp".networkConfig.MulticastDNS = lib.mkDefault "yes"; 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 # Use networkd instead of the pile of shell scripts
networking.useNetworkd = lib.mkDefault true; networking.useNetworkd = lib.mkDefault true;