Skip to content

Commit a495765

Browse files
committed
Allow null tailscaleAuthKeyFile
Since systemd service handles optional tailscaleAuthKeyFile, allow for optional declaration in the module. Signed-off-by: Marin <[email protected]>
1 parent a421a4e commit a495765

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

flake.nix

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,9 @@
9494
};
9595

9696
tailscaleAuthKeyFile = mkOption {
97-
type = types.path;
98-
description = "Path to file containing the Tailscale Auth Key";
97+
type = types.nullOr types.path;
98+
default = null;
99+
description = "Path to file containing the Tailscale Auth Key, if null check golink journal for login link to authorize against the tailnet.";
99100
};
100101

101102
verbose = mkOption {

0 commit comments

Comments
 (0)