diff --git a/nixosModules/clanCore/networking.nix b/nixosModules/clanCore/networking.nix index 2ad18425..36e878d1 100644 --- a/nixosModules/clanCore/networking.nix +++ b/nixosModules/clanCore/networking.nix @@ -74,6 +74,9 @@ systemd.services.NetworkManager-wait-online.enable = false; systemd.network.wait-online.enable = false; + systemd.network.networks."99-default-dhcp.network".networkConfig.MulticastDNS = lib.mkDefault "yes"; + systemd.network.networks."99-wireless-client-dhcp".networkConfig.MulticastDNS = lib.mkDefault "yes"; + # Use networkd instead of the pile of shell scripts networking.useNetworkd = lib.mkDefault true; };