Some checks are pending
CI / Build linux-lava for x86_64-linux (push) Waiting to run
9 lines
314 B
Nix
9 lines
314 B
Nix
{ config, ... }: {
|
|
age.secrets.tailscale_auth.file = ../../secrets/tailscale_auth.age;
|
|
services.tailscale = {
|
|
enable = true;
|
|
authKeyFile = config.age.secrets.tailscale_auth.path;
|
|
openFirewall = true;
|
|
useRoutingFeatures = if config.me.environment == "headless" then "both" else "client";
|
|
};
|
|
}
|