mirror of
https://github.com/rubenhensen/k8scd.git
synced 2026-09-17 18:22:54 +02:00
15 lines
310 B
Nix
15 lines
310 B
Nix
{ config, pkgs, lib, ... }: {
|
|
# Enable RabbitMQ using the infrastructure module
|
|
infrastructure.rabbitmq = {
|
|
enable = true;
|
|
bindToIp = "127.0.0.1";
|
|
bindToPort = 5672;
|
|
|
|
# Enable management plugin for testing
|
|
managementPlugin = {
|
|
enable = true;
|
|
port = 15672;
|
|
};
|
|
};
|
|
}
|