diff options
author | Vika <vika@fireburn.ru> | 2021-08-04 13:42:52 +0300 |
---|---|---|
committer | Vika <vika@fireburn.ru> | 2021-08-04 13:42:52 +0300 |
commit | b88d8508cf3c0ccf1746795e7c04a173e6e0d0e4 (patch) | |
tree | 726f88af2e3079fe9967af415e993a4e59cd8404 | |
parent | 12eaeeb4d8b0d0c24c19dc4aff1b86d8334e78af (diff) | |
download | kittybox-b88d8508cf3c0ccf1746795e7c04a173e6e0d0e4.tar.zst |
Fixed lack of default for internalTokenFile
-rw-r--r-- | flake.nix | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix index ada99e8..b8ba086 100644 --- a/flake.nix +++ b/flake.nix @@ -106,6 +106,7 @@ }; internalTokenFile = mkOption { type = types.nullOr types.str; + default = null; example = "/run/secrets/kittybox-shared-secret"; description = "A shared secret that will, when passed, allow unlimited editing access to database. Keep it safe."; }; |