mio-ops/profiles/logrotate.nix

12 lines
150 B
Nix
Raw Normal View History

2021-05-25 01:40:51 +00:00
# logrotate configuration for NixOS / NixOps
{ config, ... }:
{
services.logrotate = {
2021-11-16 04:57:23 +00:00
enable = true; # Enable the logrotate service
2021-05-25 01:40:51 +00:00
};
}