mirror of
https://github.com/Nickiel12/nicks-nix-config.git
synced 2024-11-22 20:59:32 -08:00
13 lines
377 B
Nix
13 lines
377 B
Nix
{ config, ... }:
|
|
|
|
{
|
|
# tailscale up --login-server <headscale_url>
|
|
# run this command to add this node to the server ^
|
|
services.tailscale.enable = true;
|
|
# Defined here to indicate the settings are related
|
|
networking.firewall = {
|
|
checkReversePath = "loose";
|
|
trustedInterfaces = [ "tailscale0" ];
|
|
allowedUDPPorts = [ config.services.tailscale.port ];
|
|
};
|
|
}
|