Skip to content

Commit

Permalink
Use default value for healthcheckUuid in vor configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
BCNelson committed Nov 22, 2024
1 parent 2a67319 commit 4c071c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nixos/vor/default.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{ libx, ... }:
let
healthcheckUuid = libx.getSecret ./sensitive.nix "auto_update_healthCheck_uuid";
healthcheckUuid = libx.getSecretWithDefault ./sensitive.nix "auto_update_healthCheck_uuid" "00000000-0000-0000-0000-000000000000";
ntfy_topic = libx.getSecretWithDefault ../sensitive.nix "ntfy_topic" "null";
ntfy_autoUpdate_topic = libx.getSecretWithDefault ../sensitive.nix "ntfy_autoUpdate_topic" "null";
in
Expand Down

0 comments on commit 4c071c8

Please sign in to comment.