2020-04-24 23:36:52 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
{
|
2022-09-09 14:08:57 +00:00
|
|
|
options.security.auditd.enable = mkEnableOption (lib.mdDoc "the Linux Audit daemon");
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
config = mkIf config.security.auditd.enable {
|
|
|
|
boot.kernelParams = [ "audit=1" ];
|
|
|
|
|
|
|
|
environment.systemPackages = [ pkgs.audit ];
|
|
|
|
|
|
|
|
systemd.services.auditd = {
|
|
|
|
description = "Linux Audit daemon";
|
|
|
|
wantedBy = [ "basic.target" ];
|
|
|
|
|
|
|
|
unitConfig = {
|
|
|
|
ConditionVirtualization = "!container";
|
|
|
|
ConditionSecurity = [ "audit" ];
|
|
|
|
DefaultDependencies = false;
|
|
|
|
};
|
|
|
|
|
|
|
|
path = [ pkgs.audit ];
|
|
|
|
|
|
|
|
serviceConfig = {
|
|
|
|
ExecStartPre="${pkgs.coreutils}/bin/mkdir -p /var/log/audit";
|
|
|
|
ExecStart = "${pkgs.audit}/bin/auditd -l -n -s nochange";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|