nixos-config/hosts/nixos-laptop/config/system_saves.nix
2026-07-03 21:56:32 +02:00

10 lines
182 B
Nix

{ config, pkgs, ... }:
{
nix.gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 30d";
};
}