[NixOS] Add rabbitmq

This commit is contained in:
2024-01-29 19:51:02 -07:00
parent 30146f4fdb
commit 88937e9acc
2 changed files with 9 additions and 2 deletions

6
nixos/rabbitmq.nix Normal file
View File

@@ -0,0 +1,6 @@
{ pkgs, config, makeEnable, realUsers, ... }:
makeEnable config "modules.rabbitmq" true {
services.rabbitmq = {
enable = true;
};
}