Compare commits

..

2 commits

Author SHA1 Message Date
sid
5c11b77e1b 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
2026-04-19 01:42:15 +02:00
sid
5cfc8a54d5 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
2026-04-19 01:39:02 +02:00
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";
};
}