This commit is contained in:
alsaiduq-lab 2025-09-02 13:20:43 -06:00
parent f8a5e7a715
commit b0429272f4
3 changed files with 31 additions and 23 deletions

View file

@ -1,10 +1,16 @@
{...}: {
{ pkgs, ... }:
{
services.tailscale = {
enable = true;
# some tailscale update forced this
package = pkgs.tailscale.overrideAttrs (_: {
doCheck = false;
checkPhase = "true";
});
};
networking.firewall = {
allowedUDPPorts = [41641];
trustedInterfaces = ["tailscale0"];
allowedUDPPorts = [ 41641 ];
trustedInterfaces = [ "tailscale0" ];
};
}