13 lines
225 B
Nix
13 lines
225 B
Nix
{ ... }:
|
|
|
|
# Configuration options for the nix package manager
|
|
{
|
|
nix.gc = {
|
|
# Run garbage collection automatically
|
|
automatic = true;
|
|
# Run it once a week
|
|
dates = "weekly";
|
|
options = "--delete-older-than 30d";
|
|
};
|
|
}
|