From 64af5f6eefbdc86d95373d71f555acde552efe4b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20H=C3=A9mono?= Date: Sun, 20 Oct 2024 18:41:35 +0200 Subject: [PATCH] Change replacement variable It seems that the ini was reformatted, turning end of line comments introduce by the removed sharp character into before the line comment. Replacing the value therefore didn't work. --- hosts/sesame/buckets.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hosts/sesame/buckets.nix b/hosts/sesame/buckets.nix index b16f7c3..da0e384 100644 --- a/hosts/sesame/buckets.nix +++ b/hosts/sesame/buckets.nix @@ -15,7 +15,7 @@ in { MINIO_USE_SSL = true; MINIO_ENDPOINT = endpoint; MINIO_ACCESS_KEY_ID = accessKeyId; - MINIO_SECRET_ACCESS_KEY = "#BACKBLAZE_APPLICATION_SECRET#"; + MINIO_SECRET_ACCESS_KEY = "BACKBLAZE_APPLICATION_SECRET"; MINIO_BUCKET = "jhemono-forgejo"; MINIO_LOCATION = region; };