fix firewall

This commit is contained in:
2025-08-14 12:21:52 +00:00
parent b1bd4d3063
commit 89938e355b

View File

@@ -1,6 +1,9 @@
{
{config, ...}: {
networking.firewall = {
enable = true;
trustedInterfaces = ["eno1" "tailscale0"];
allowedUDPPorts = [config.services.tailscale.port];
allowedTCPPorts = [22];
checkReversePath = "loose";
};
}