nix-dotfiles/modules/nixos/minio.nix
2023-08-16 16:30:45 +02:00

13 lines
208 B
Nix

{
networking.firewall.allowedTCPPorts = [
9000
9001
];
services.minio = {
enable = true;
browser = true;
listenAddress = "0.0.0.0:9000";
consoleAddress = "0.0.0.0:9001";
};
}