13 lines
251 B
Nix
Executable file
13 lines
251 B
Nix
Executable file
{ ...
|
|
}:
|
|
|
|
{
|
|
nix.gc = {
|
|
# Enable automatic garbage collection
|
|
automatic = true;
|
|
# Run daily at 03:00 AM
|
|
dates = "03:00";
|
|
# Keep only the latest generations (safety net for rollbacks)
|
|
options = "--delete-older-than 7d";
|
|
};
|
|
}
|