mirror of
https://github.com/davegallant/nix-config
synced 2025-08-07 00:58:16 +00:00
15 lines
227 B
Nix
15 lines
227 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
services.tailscale.enable = true;
|
|
|
|
networking = {
|
|
firewall = {
|
|
allowPing = false;
|
|
enable = true;
|
|
checkReversePath = "loose";
|
|
trustedInterfaces = [ "tailscale0" ];
|
|
};
|
|
};
|
|
}
|