pvv-nixos-config/base/services/logrotate.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
217 B
Nix
Raw Normal View History

2024-08-31 22:23:09 +02:00
{ ... }:
{
systemd.services.logrotate = {
documentation = [ "man:logrotate(8)" "man:logrotate.conf(5)" ];
unitConfig.RequiresMountsFor = "/var/log";
serviceConfig.ReadWritePaths = [ "/var/log" ];
2024-08-31 22:23:09 +02:00
};
2024-12-07 22:46:35 +01:00
}