nix-configurations/hosts/lkk-nix-1/services/minio.nix

12 lines
249 B
Nix
Raw Permalink Normal View History

2023-03-28 10:03:26 +00:00
{ config, ... }: {
services.minio = {
enable = true;
region = "eu-central-1";
2023-03-28 12:53:20 +00:00
consoleAddress = ":9001";
browser = true;
2023-03-28 10:03:26 +00:00
rootCredentialsFile = config.age.secrets.minio-root-cred.path;
dataDir = [ "/var/backup/s3" ];
};
}