Skip to content

Tailscale

Private WireGuard networks made easy.

View the synix NixOS module on Forgejo.

References

Sops

Provide the following entries to your secrets.yaml:

Replace abc123 with your actual secrets

tailscale:
    auth-key: abc123

Config

{
  imports = [ inputs.synix.nixosModules.tailscale ];

  services.tailscale = {
    enable = true;
    enableSSH = true;
    loginServer = "<your-headscale-instance>";
  };
}