nix-config/aspects/server/tailscale.nix
2026-02-12 18:50:38 -03:00

22 lines
406 B
Nix

# aspects/server/tailscale.nix
{ ... }:
{
flake.modules.nixos.server-tailscale =
{
config,
lib,
pkgs,
...
}:
{
services.tailscale = {
extraSetFlags = [ "--advertise-exit-node" ];
useRoutingFeatures = "server";
};
boot.kernel.sysctl = {
"net.ipv4.ip_forward" = 1;
"net.ipv6.conf.all.forwarding" = 1;
};
};
}