nixos/prometheus/postfix: enable systemd by default

Changed files
+7 -3
nixos
modules
services
monitoring
prometheus
exporters
+7 -3
nixos/modules/services/monitoring/prometheus/exporters/postfix.nix
···
'';
};
systemd = {
-
enable = mkEnableOption ''
-
reading metrics from the systemd-journal instead of from a logfile
-
'';
+
enable = mkOption {
+
type = types.bool;
+
default = true;
+
description = ''
+
Whether to enable reading metrics from the systemd journal instead of from a logfile
+
'';
+
};
unit = mkOption {
type = types.str;
default = "postfix.service";