also enable LLMNR

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

View File

@ -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;