nix-deploy/config/common/configuration/nix.nix
2023-10-03 17:03:44 +02:00

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";
};
}