This commit is contained in:
alsaiduq-lab 2025-03-31 16:39:56 -06:00
parent 4aaf6b9d99
commit 5ef5281dc1
15 changed files with 31 additions and 45 deletions

10
modules/tailscale.nix Normal file
View file

@ -0,0 +1,10 @@
{...}: {
services.tailscale = {
enable = true;
};
networking.firewall = {
allowedUDPPorts = [41641];
trustedInterfaces = ["tailscale0"];
};
}