8 lines
223 B
Nix
8 lines
223 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;
|
|
};
|
|
}
|