mirror of
https://github.com/Noratrieb/vps.git
synced 2026-01-14 16:55:00 +01:00
9 lines
222 B
Nix
9 lines
222 B
Nix
{ config, ... }: {
|
|
age.secrets.minio_env_file.file = ../../secrets/minio_env_file.age;
|
|
|
|
services.minio = {
|
|
enable = true;
|
|
region = "eu";
|
|
rootCredentialsFile = config.age.secrets.minio_env_file.path;
|
|
};
|
|
}
|