Minio local

This commit is contained in:
Filippo Berto 2024-10-29 10:18:42 +01:00
parent 21ad4d1fc7
commit 66623bacdc
No known key found for this signature in database
GPG key ID: FE98AE5EC52B1056
3 changed files with 17 additions and 2 deletions

View file

@ -0,0 +1,13 @@
{ config, ... }:
{
age.secrets.minio = {
file = ../../secrets/minio.age;
owner = "minio";
};
services.minio = {
enable = true;
rootCredentialsFile = config.age.secrets.minio.path;
};
}