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