Add extra DNS records to headscale
All checks were successful
Check flake / build-amd64-linux (push) Successful in 2m37s

This commit is contained in:
Jordan Holt 2024-06-02 23:46:24 +01:00
parent 08bf00bc93
commit 5ca4f2e600
Signed by: jordan
GPG Key ID: B8CFFF61F1CCF520

View File

@ -28,6 +28,18 @@ in {
server_url = "https://${fqdn}";
dns_config = {
base_domain = "vimium.net";
extra_records = [
{
name = "grafana.mesh.vimium.net";
type = "A";
value = "100.64.0.6";
}
{
name = "home.mesh.vimium.net";
type = "A";
value = "100.64.0.7";
}
];
};
logtail.enabled = false;
};