Files
nix-config/main/networking.nix
Dave Gallant 03fc53bf39 Refactor main
2021-05-03 20:24:22 -04:00

12 lines
172 B
Nix

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