[NixOS] Disable rabbitmq by default

This commit is contained in:
2024-12-29 15:36:38 -07:00
parent c697b5684a
commit 5db03a0695

View File

@@ -1,5 +1,5 @@
{ pkgs, config, makeEnable, realUsers, ... }:
makeEnable config "myModules.rabbitmq" true {
makeEnable config "myModules.rabbitmq" false {
services.rabbitmq = {
enable = true;
};