mirror of
https://github.com/Noratrieb/vps.git
synced 2026-07-12 16:27:46 +02:00
13 lines
287 B
Nix
13 lines
287 B
Nix
{ ... }: {
|
|
networking.nftables.enable = true;
|
|
|
|
services.tailscale = {
|
|
enable = true;
|
|
extraUpFlags = [ "--advertise-exit-node" ];
|
|
useRoutingFeatures = "server";
|
|
};
|
|
|
|
systemd.services.tailscaled.serviceConfig.Environment = [
|
|
"TS_DEBUG_FIREWALL_MODE=nftables"
|
|
];
|
|
}
|