fix: dns issues
This commit is contained in:
parent
96b0c38c14
commit
787d7b6640
3 changed files with 22 additions and 7 deletions
|
@ -6,10 +6,6 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
autoPrune.enable = true;
|
autoPrune.enable = true;
|
||||||
dockerCompat = true;
|
dockerCompat = true;
|
||||||
defaultNetwork.settings = {
|
|
||||||
# Required for container networking to be able to use names.
|
|
||||||
dns_enabled = true;
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
virtualisation.oci-containers.backend = "podman";
|
virtualisation.oci-containers.backend = "podman";
|
||||||
|
|
||||||
|
|
|
@ -42,6 +42,14 @@ mkIf config.services.headscale.enable {
|
||||||
};
|
};
|
||||||
|
|
||||||
logtail.enabled = false;
|
logtail.enabled = false;
|
||||||
|
|
||||||
|
dns_config = {
|
||||||
|
override_local_dns = true;
|
||||||
|
magic_dns = true;
|
||||||
|
nameservers = [
|
||||||
|
"100.64.0.4"
|
||||||
|
];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -1,16 +1,23 @@
|
||||||
{
|
{
|
||||||
config,
|
config,
|
||||||
|
lib,
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
|
let
|
||||||
|
inherit (lib) mkIf;
|
||||||
|
cfg = config.services.adguardhome;
|
||||||
|
in
|
||||||
{
|
{
|
||||||
config = {
|
config = {
|
||||||
|
networking.firewall.allowedUDPPorts = mkIf cfg.openFirewall [ cfg.settings.dns.port ];
|
||||||
|
|
||||||
services.adguardhome = {
|
services.adguardhome = {
|
||||||
enable = true;
|
enable = true;
|
||||||
port = 3001;
|
port = 3000;
|
||||||
openFirewall = true;
|
openFirewall = true;
|
||||||
settings = {
|
settings = {
|
||||||
http = {
|
http = {
|
||||||
address = "0.0.0.0:3000";
|
address = "0.0.0.0:${toString cfg.port}";
|
||||||
};
|
};
|
||||||
auth_attempts = 5;
|
auth_attempts = 5;
|
||||||
block_auth_min = 10;
|
block_auth_min = 10;
|
||||||
|
@ -19,11 +26,15 @@
|
||||||
port = 53;
|
port = 53;
|
||||||
upstream_mode = "load_balance";
|
upstream_mode = "load_balance";
|
||||||
upstream_dns_file = config.age.secrets.adguard-dns-list.path;
|
upstream_dns_file = config.age.secrets.adguard-dns-list.path;
|
||||||
|
fallback_dns = [ "9.9.9.9" ];
|
||||||
};
|
};
|
||||||
clients = {
|
clients = {
|
||||||
persistent = [
|
persistent = [
|
||||||
{
|
{
|
||||||
ids = [ "100.64.0.1" ];
|
ids = [
|
||||||
|
"100.64.0.1"
|
||||||
|
"192.168.178.20"
|
||||||
|
];
|
||||||
name = "brontes";
|
name = "brontes";
|
||||||
tags = [ "device_pc" ];
|
tags = [ "device_pc" ];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue