Files
nix-config/common/networking.nix
2022-05-14 22:33:14 -04:00

15 lines
227 B
Nix

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