nixfiles/hosts/storage/misc.nix
2022-10-27 20:27:22 +01:00

9 lines
157 B
Nix

{ ... }: {
nix.settings.auto-optimise-store = true;
nix.gc = {
automatic = true;
dates = "daily";
options = "--delete-older-than 1d";
};
}