We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a421a4e commit 7c07b11Copy full SHA for 7c07b11
flake.nix
@@ -94,8 +94,13 @@
94
};
95
96
tailscaleAuthKeyFile = mkOption {
97
- type = types.path;
98
- description = "Path to file containing the Tailscale Auth Key";
+ type = types.nullOr types.path;
+ default = null;
99
+ description = ''
100
+ Path to the file containing the Tailscale Auth Key.
101
+ If null, manual authorization with the tailnet is required.
102
+ Check `journalctl -eu golink` for the login link.
103
+ '';
104
105
106
verbose = mkOption {
0 commit comments