mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
47 lines
971 B
Nix
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";
|
|
};
|
|
};
|
|
}
|