nix-config/modules/nixos/logrotate.nix
2026-04-15 18:26:05 -04:00

15 lines
233 B
Nix

{...}: {
services.logrotate = {
settings = {
header = {
dateext = true;
};
"var/log/audit/audit.log" = {
frequency = "daily";
rotate = 3;
size = "100k";
};
};
};
}