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

12 lines
159 B
Nix
Raw Permalink Normal View History

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