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