From b46ab8baa9e0239e7596c6d315c0111dca7741b7 Mon Sep 17 00:00:00 2001 From: ahuston-0 Date: Mon, 24 Jun 2024 20:30:57 -0400 Subject: [PATCH] fix credentials and listen address Signed-off-by: ahuston-0 --- systems/palatine-hill/minio.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/systems/palatine-hill/minio.nix b/systems/palatine-hill/minio.nix index edc3396..af8fabe 100644 --- a/systems/palatine-hill/minio.nix +++ b/systems/palatine-hill/minio.nix @@ -6,8 +6,8 @@ in { services.minio = { enable = true; - credentialsFile = config.sops.secrets."minio/credentials".path; - listAddress = ":8500"; + rootCredentialsFile = config.sops.secrets."minio/credentials".path; + listenAddress = ":8500"; dataDir = [ "${base_path}/data" ]; consoleAddress = ":8501"; configDir = "${base_path}/config";