12 lines
152 B
Nix
12 lines
152 B
Nix
|
# logrotate configuration for NixOS / NixOps
|
||
|
|
||
|
{ config, ... }:
|
||
|
|
||
|
{
|
||
|
|
||
|
services.logrotate = {
|
||
|
enable = true; # Enable the logrotate service
|
||
|
};
|
||
|
|
||
|
}
|