infrastructure/modules/base/nix.nix

12 lines
169 B
Nix
Raw Normal View History

2023-04-12 12:47:22 +00:00
{
nix = {
settings.auto-optimise-store = true;
gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 15";
};
};
}