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 e0d84afCopy full SHA for e0d84af
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 file containing the Tailscale Auth Key or null (default).
101
+ If null, you need to manually authorize golink with your tailnet.
102
+ Check `journalctl -eu golink` for the login link.
103
+ '';
104
105
106
verbose = mkOption {
0 commit comments