mirror of
https://git.pvv.ntnu.no/Drift/pvv-nixos-config.git
synced 2026-02-21 01:17:53 +01:00
12 lines
233 B
Nix
12 lines
233 B
Nix
{ ... }:
|
|
{
|
|
systemd.services.logrotate = {
|
|
documentation = [
|
|
"man:logrotate(8)"
|
|
"man:logrotate.conf(5)"
|
|
];
|
|
unitConfig.RequiresMountsFor = "/var/log";
|
|
serviceConfig.ReadWritePaths = [ "/var/log" ];
|
|
};
|
|
}
|