nixos-config/hosts/nixos-home/config/system_saves.nix
2026-07-03 09:15:37 +02:00

10 lines
182 B
Nix

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