nix-dotfiles/modules/nixos/minio_local.nix
2024-10-29 10:18:42 +01:00

13 lines
211 B
Nix

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