Skip to content

Commit

Permalink
Use default value for healthcheckUuid in default.nix configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
BCNelson committed Nov 22, 2024
1 parent 2e83e98 commit 2a67319
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nixos/romeo/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
let
dataDirs = import ./dataDirs.nix;
services = import ./services { inherit libx dataDirs pkgs; };
healthcheckUuid = libx.getSecret ./sensitive.nix "auto_update_healthCheck_uuid";
healthcheckUuid = libx.getSecretWithDefault ./sensitive.nix "auto_update_healthCheck_uuid" "00000000-0000-0000-0000-000000000000";
porkbun_api_creds = libx.getSecretWithDefault ./sensitive.nix "porkbun_api" {
api_key = "";
secret_key = "";
Expand Down

0 comments on commit 2a67319

Please sign in to comment.