7 lines
135 B
Nix
7 lines
135 B
Nix
# logrotate configuration for NixOS
|
|
{config, ...}: {
|
|
services.logrotate = {
|
|
enable = true; # Enable the logrotate service
|
|
};
|
|
}
|