infrastructure/modules/base/nix.nix

12 lines
170 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";
2024-06-10 11:20:07 +00:00
options = "--delete-older-than 15d";
2023-04-12 12:47:22 +00:00
};
};
}