nixfiles/hosts/storage/misc.nix

10 lines
156 B
Nix
Raw Normal View History

2022-10-27 16:25:26 +01:00
{...}: {
nix.settings.auto-optimise-store = true;
nix.gc = {
automatic = true;
dates = "daily";
options = "--delete-older-than 1d";
};
}