10 lines
163 B
Nix
10 lines
163 B
Nix
{...}: {
|
|
services.tailscale = {
|
|
enable = true;
|
|
};
|
|
|
|
networking.firewall = {
|
|
allowedUDPPorts = [41641];
|
|
trustedInterfaces = ["tailscale0"];
|
|
};
|
|
}
|