12 lines
205 B
Nix
12 lines
205 B
Nix
{ lib, config, pkgs, ... }:
|
|
|
|
{
|
|
services.rabbitmq = {
|
|
enable = true;
|
|
listenAddress = "0.0.0.0";
|
|
managementPlugin.enable = true;
|
|
};
|
|
networking.firewall.allowedTCPPorts = [ 5672 15672 ];
|
|
}
|
|
|