NixOS/system/services/stubby.nix

33 lines
743 B
Nix
Raw Normal View History

{
config,
lib,
pkgs,
...
}:
2024-06-14 19:42:14 +07:00
let
cfg = config.profile.services.stubby;
2024-06-17 19:54:21 +07:00
inherit (lib) mkIf lists;
2024-06-14 19:42:14 +07:00
in
{
config = mkIf cfg.enable {
networking.resolvconf.useLocalResolver = false;
2024-06-17 19:54:21 +07:00
networking.nameservers = lists.optional (!config.profile.podman.pihole.enable) "192.168.100.5";
2024-06-14 19:42:14 +07:00
services.stubby = {
enable = true;
settings = pkgs.stubby.passthru.settingsExample // {
2024-10-28 21:38:34 +07:00
listen_addresses = [ "192.168.100.3" ];
2024-06-14 19:42:14 +07:00
upstream_recursive_servers = [
{
address_data = "1.1.1.1";
tls_auth_name = "cloudflare-dns.com";
}
{
address_data = "1.0.0.1";
2024-06-14 19:42:14 +07:00
tls_auth_name = "cloudflare-dns.com";
}
];
};
};
};
}