mirror of
https://github.com/davegallant/nix-config
synced 2025-08-06 03:13:38 +00:00
14 lines
193 B
Nix
14 lines
193 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
services.tailscale.enable = true;
|
|
|
|
networking = {
|
|
firewall = {
|
|
allowPing = false;
|
|
enable = true;
|
|
trustedInterfaces = [ "tailscale0" ];
|
|
};
|
|
};
|
|
}
|