tangled
alpha
login
or
join now
devins.page
/
flake
0
fork
atom
configurations for my servers and desktops
nix
nixos
flake
dots
dotfiles
0
fork
atom
overview
issues
pulls
pipelines
fix: enable ip forwarding for tailscale exit node
devins.page
3 months ago
97af617c
9c76533a
+5
1 changed file
expand all
collapse all
unified
split
hosts
bluepill-proxy
services
tailscale.nix
+5
hosts/bluepill-proxy/services/tailscale.nix
···
1
1
{...}: {
2
2
+
boot.kernel.sysctl = {
3
3
+
"net.ipv4.ip_forward" = 1;
4
4
+
"net.ipv6.conf.all.forwarding" = 1;
5
5
+
};
6
6
+
2
7
services.tailscale.enable = true;
3
8
}