From ecc8942a371f1c1884c3aca9811279eeebcbc2a0 Mon Sep 17 00:00:00 2001 From: cswimr Date: Sat, 16 Nov 2024 19:25:31 -0500 Subject: [PATCH] added a comment to the tailscale file --- nixos/tailscale.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/nixos/tailscale.nix b/nixos/tailscale.nix index 17a324c..93a6793 100755 --- a/nixos/tailscale.nix +++ b/nixos/tailscale.nix @@ -1,7 +1,10 @@ { services.tailscale = { enable = true; - authKeyFile = "/run/secrets/tailscale_key"; + # When using this configuration, make sure to create a file at /run/secrets/tailscale + # with the contents of your Tailscale auth key. + # Make sure your permissions are set correctly, e.g. 0600. + authKeyFile = "/run/secrets/tailscale"; extraUpFlags = [ "--ssh" ]; }; }