infrastructure/hosts/hydrogen/system/nix/default.nix

12 lines
201 B
Nix
Raw Normal View History

2023-06-19 19:09:13 +00:00
{ ... }: {
# optimizations
nix.settings.auto-optimise-store = true;
# garbage collection
nix.gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 30d";
};
}