13 lines
211 B
Nix
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;
|
|
};
|
|
}
|
|
|