remove tailnet dns
All checks were successful
Flake check / flake-check (pull_request) Successful in 20s
Build hosts / build-hosts (pull_request) Successful in 24s

This commit is contained in:
sid 2026-04-19 01:39:02 +02:00
parent 72700ac671
commit 5cfc8a54d5
2 changed files with 2 additions and 7 deletions

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";
};
}