Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,13 @@
};

tailscaleAuthKeyFile = mkOption {
type = types.path;
description = "Path to file containing the Tailscale Auth Key";
type = types.nullOr types.path;
default = null;
description = ''
Path to the file containing the Tailscale Auth Key.
If null, manual authorization with the tailnet is required.
Check `journalctl -eu golink` for the login link.
'';
};

verbose = mkOption {
Expand Down
Loading