nixpkgs/nixos/modules/services/monitoring/incron.nix

103 lines
2.6 KiB
Nix
Raw Normal View History

2018-08-25 22:08:24 +00:00
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.services.incron;
in
{
options = {
services.incron = {
enable = mkOption {
type = types.bool;
default = false;
description = ''
Whether to enable the incron daemon.
Note that commands run under incrontab only support common Nix profiles for the PATH provided variable.
'';
2018-08-25 22:08:24 +00:00
};
allow = mkOption {
type = types.nullOr (types.listOf types.str);
default = null;
description = ''
Users allowed to use incrontab.
If empty then no user will be allowed to have their own incrontab.
If null then will defer to <option>deny</option>.
If both <option>allow</option> and <option>deny</option> are null
then all users will be allowed to have their own incrontab.
'';
2018-08-25 22:08:24 +00:00
};
deny = mkOption {
type = types.nullOr (types.listOf types.str);
default = null;
description = "Users forbidden from using incrontab.";
};
systab = mkOption {
type = types.lines;
default = "";
description = "The system incrontab contents.";
example = ''
"/var/mail IN_CLOSE_WRITE abc $@/$#"
"/tmp IN_ALL_EVENTS efg $@/$# $&"
'';
};
extraPackages = mkOption {
type = types.listOf types.package;
default = [];
example = "[ pkgs.rsync ];";
description = "Extra packages available to the system incrontab.";
};
2018-08-25 22:08:24 +00:00
};
};
config = mkIf cfg.enable {
assertions = [
{ assertion = cfg.allow != null -> cfg.deny == null;
message = "If `services.incron.allow` is set then `services.incron.deny` will be ignored.";
}
];
2018-08-25 22:08:24 +00:00
environment.systemPackages = [ pkgs.incron ];
security.wrappers.incrontab.source = "${pkgs.incron}/bin/incrontab";
2018-08-27 15:23:19 +00:00
# incron won't read symlinks
environment.etc."incron.d/system" = {
mode = "0444";
text = ${cfg.systab};
2018-08-27 15:23:19 +00:00
};
2018-08-25 22:08:24 +00:00
environment.etc."incron.allow" = mkIf (cfg.allow != null) {
text = ${concatStringsSep "\n" cfg.allow};
2018-08-25 22:08:24 +00:00
};
environment.etc."incron.deny" = mkIf (cfg.deny != null) {
text = ${concatStringsSep "\n" cfg.deny};
2018-08-25 22:08:24 +00:00
};
systemd.services.incron = {
description = "File system events scheduler";
wantedBy = [ "multi-user.target" ];
path = cfg.extraPackages;
2018-08-25 22:08:24 +00:00
preStart = "mkdir -m 710 -p /var/spool/incron";
serviceConfig.Type = "forking";
serviceConfig.PIDFile = "/run/incrond.pid";
serviceConfig.ExecStart = "${pkgs.incron}/bin/incrond";
};
};
}