services.dnsproxy.settings

NixOS option

Contents of the config.yaml config file. The --config-path argument will only be passed if this set is not empty. See https://github.com/AdguardTeam/dnsproxy/blob/master/config.yaml.dist.

type: YAML 1.1 value
Default
{ }
Example
{
  bootstrap = [
    "8.8.8.8:53"
  ];
  listen-addrs = [
    "0.0.0.0"
  ];
  listen-ports = [
    53
  ];
  upstream = [
    "1.1.1.1:53"
  ];
}
declared in: nixos/modules/services/networking/dnsproxy.nixView source on NixOS/nixpkgs →