sid.ovh/modules/nixos/tailscale/default.nix
sid 8155fbb41c
All checks were successful
Build hosts / build-hosts (pull_request) Successful in 20s
Flake check / flake-check (pull_request) Successful in 20s
disable tailscale dns
2026-04-19 00:26:15 +02:00

12 lines
244 B
Nix

{ inputs, config, ... }:
{
imports = [ inputs.synix.nixosModules.tailscale ];
services.tailscale = {
enable = true;
enableSSH = true;
acceptDNS = !config.services.coredns.enable;
loginServer = "https://hs.sid.ovh";
};
}