From e428db106aa113bd516b43aa2b377f5e094566df Mon Sep 17 00:00:00 2001 From: Inex Code Date: Wed, 13 Jul 2022 14:54:00 +0300 Subject: [PATCH] Replace some nulls --- variables.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/variables.nix b/variables.nix index 027d9cc..f11c725 100644 --- a/variables.nix +++ b/variables.nix @@ -20,9 +20,9 @@ in skippedMigrations = (if jsonData ? "api.skippedMigrations" then jsonData.api.skippedMigrations else [ ]); }; backblaze = { - bucket = (if jsonData ? "backblaze.bucket" then jsonData.backblaze.bucket else null); - accountId = (if jsonData ? "backblaze.accountId" then jsonData.backblaze.accountId else null); - accountKey = (if jsonData ? "backblaze.accountKey" then jsonData.backblaze.accountKey else null); + bucket = (if jsonData ? "backblaze.bucket" then jsonData.backblaze.bucket else ""); + accountId = (if jsonData ? "backblaze.accountId" then jsonData.backblaze.accountId else ""); + accountKey = (if jsonData ? "backblaze.accountKey" then jsonData.backblaze.accountKey else ""); }; cloudflare = { apiKey = (if jsonData ? "cloudflare.apiKey" then jsonData.cloudflare.apiKey else null);