nixpkgs/nixos/modules/services/monitoring/monit.nix
2016-01-07 06:39:06 +00:00

47 lines
971 B
Nix

# Monit system watcher
# http://mmonit.org/monit/
{config, pkgs, lib, ...}:
let inherit (lib) mkOption mkIf;
in
{
options = {
services.monit = {
enable = mkOption {
default = false;
description = ''
Whether to run Monit system watcher.
'';
};
config = mkOption {
default = "";
description = "monit.conf content";
};
};
};
config = mkIf config.services.monit.enable {
environment.etc = [
{
source = pkgs.writeTextFile {
name = "monit.conf";
text = config.services.monit.config;
};
target = "monit.conf";
mode = "0400";
}
];
systemd.services.monit = {
description = "Monit system watcher";
after = [ "network-interfaces.target" ];
wantedBy = [ "multi-user.target" ];
script = "${pkgs.monit}/bin/monit -I -c /etc/monit.conf";
serviceConfig.Restart = "always";
};
};
}