nixos-config/nixos/profiles/services/resolved/default.nix

11 lines
134 B
Nix
Raw Normal View History

2024-11-28 01:14:34 +08:00
{ ... }:
{
services.resolved = {
enable = true;
llmnr = "false";
extraConfig = ''
MulticastDNS=off
'';
};
}