Skip to content

Commit 77c2e6d

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 6826e70 commit 77c2e6d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

flake.nix

+2-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,8 @@
9494
};
9595

9696
tailscaleAuthKeyFile = mkOption {
97-
type = types.path;
97+
type = types.nullOr types.path;
98+
default = null;
9899
description = "Path to file containing the Tailscale Auth Key";
99100
};
100101

0 commit comments

Comments
 (0)