nixos/rmilter: don't enable by default, if rspamd enabled

This commit is contained in:
Alexander V. Nikolaev 2018-10-12 17:28:48 +03:00
parent 041119528c
commit b61dd2bcb7

View File

@ -52,7 +52,7 @@ in
enable = mkOption { enable = mkOption {
type = types.bool; type = types.bool;
default = cfg.rspamd.enable; default = false;
description = "Whether to run the rmilter daemon."; description = "Whether to run the rmilter daemon.";
}; };