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

12 lines
201 B
Nix

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