Files
nix-config/common/networking.nix
Dave Gallant d2aaa3920f Add alejandra
2022-05-28 18:49:15 -04:00

13 lines
222 B
Nix

{pkgs, ...}: {
services.tailscale.enable = true;
networking = {
firewall = {
allowPing = false;
enable = true;
checkReversePath = "loose";
trustedInterfaces = ["tailscale0"];
};
};
}