Move all of NixOS to nixos/ in preparation of the repository merge
This commit is contained in:
@@ -0,0 +1,52 @@
|
||||
# Monit system watcher
|
||||
# http://mmonit.org/monit/
|
||||
|
||||
{config, pkgs, ...}:
|
||||
|
||||
let inherit (pkgs.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";
|
||||
};
|
||||
startOn = mkOption {
|
||||
default = "started network-interfaces";
|
||||
description = "What Monit supposes to be already present";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
config = mkIf config.services.monit.enable {
|
||||
|
||||
environment.etc = [
|
||||
{
|
||||
source = pkgs.writeTextFile {
|
||||
name = "monit.conf";
|
||||
text = config.services.monit.config;
|
||||
};
|
||||
target = "monit.conf";
|
||||
mode = "0400";
|
||||
}
|
||||
];
|
||||
|
||||
jobs.monit = {
|
||||
description = "Monit system watcher";
|
||||
|
||||
startOn = config.services.monit.startOn;
|
||||
|
||||
exec = "${pkgs.monit}/bin/monit -I -c /etc/monit.conf";
|
||||
|
||||
respawn = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user