29 lines
423 B
Nix
29 lines
423 B
Nix
# Module: base/maintenance
|
|
# Configure nix-store optimization, log rotations, etc
|
|
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
pkgsUnstable,
|
|
inputs,
|
|
...
|
|
}:
|
|
|
|
with lib;
|
|
|
|
{
|
|
nix.gc = {
|
|
automatic = true;
|
|
dates = "weekly";
|
|
options = "--delete-older-than 14d";
|
|
};
|
|
|
|
services.journald.extraConfig = ''
|
|
SystemMaxUse=1G
|
|
SystemKeepFree=5G
|
|
SystemMaxFileSize=100M
|
|
SystemMaxFiles=10
|
|
MaxRetentionSec=7day
|
|
'';
|
|
}
|