You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
334 B
15 lines
334 B
{ lib, ... }:
|
|
{
|
|
services.tailscale = {
|
|
enable = true;
|
|
useRoutingFeatures = lib.mkDefault "client";
|
|
};
|
|
networking.firewall = {
|
|
checkReversePath = "loose";
|
|
allowedUDPPorts = [ 41641 ]; # Facilitate firewall punching
|
|
};
|
|
|
|
environment.persistence = {
|
|
"/persist".directories = [ "/var/lib/tailscale" ];
|
|
};
|
|
}
|
|
|