Merge pull request 'remove tailnet dns' (#31) from develop into master
All checks were successful
Deploy configs / deploy-configs (push) Successful in 21s

Reviewed-on: #31
This commit is contained in:
sid 2026-04-19 01:42:15 +02:00
commit 5c11b77e1b
2 changed files with 2 additions and 7 deletions

View file

@ -24,10 +24,5 @@
enable = true;
subdomain = "hs";
};
settings = {
dns = {
magic_dns = true;
};
};
};
}

View file

@ -1,4 +1,4 @@
{ inputs, config, ... }:
{ inputs, ... }:
{
imports = [ inputs.synix.nixosModules.tailscale ];
@ -6,7 +6,7 @@
services.tailscale = {
enable = true;
enableSSH = true;
acceptDNS = !config.services.coredns.enable;
acceptDNS = false; # use coredns
loginServer = "https://hs.sid.ovh";
};
}