ahuston-0 6325c5fc65
duplicate value cleanup
Signed-off-by: ahuston-0 <aliceghuston@gmail.com>
2024-10-23 00:40:02 -04:00

24 lines
427 B
Nix

{ config, ... }:
let
base_path = "/ZFS/ZFS-primary/minio";
in
{
services.minio = {
enable = true;
rootCredentialsFile = config.sops.secrets."minio/credentials".path;
listenAddress = ":8500";
dataDir = [ "${base_path}/data" ];
consoleAddress = ":8501";
configDir = "${base_path}/config";
};
sops = {
secrets = {
"minio/credentials" = {
owner = "minio";
};
};
};
}