nix-dotfiles/nixos/minio_local.nix

13 lines
208 B
Nix

{ config, ... }:
{
age.secrets.minio = {
file = ../secrets/minio.age;
owner = "minio";
};
services.minio = {
enable = true;
rootCredentialsFile = config.age.secrets.minio.path;
};
}