flake/nixos/profiles/common/core/nix/gc.nix

20 lines
335 B
Nix
Raw Normal View History

2024-01-15 12:18:06 +08:00
{
2023-09-19 08:17:43 +08:00
nix = {
2023-10-15 08:51:56 +08:00
### Auto hard linking
2023-09-19 08:17:43 +08:00
settings.auto-optimise-store = true;
2023-10-15 08:51:56 +08:00
### Automatically delete older NixOS builds
2023-09-19 08:17:43 +08:00
gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 7d";
};
2023-10-14 10:20:42 +08:00
### optimiser
2023-09-19 08:17:43 +08:00
optimise = {
automatic = true;
dates = ["03:45"];
2023-09-19 08:17:43 +08:00
};
};
}