nixos-config/hosts/chunk/minio.nix

9 lines
183 B
Nix
Raw Permalink Normal View History

2025-01-12 01:10:12 -05:00
{config, ...}: {
services.minio = {
enable = true;
rootCredentialsFile = config.sops.secrets."minio/env".path;
region = "universe";
dataDir = ["/mnt/minio"];
};
}