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 valueDefault
{ }Example
declared in: nixos/modules/services/networking/dnsproxy.nixView source on NixOS/nixpkgs →{
bootstrap = [
"8.8.8.8:53"
];
listen-addrs = [
"0.0.0.0"
];
listen-ports = [
53
];
upstream = [
"1.1.1.1:53"
];
}