nix/roles/nix.nix
2022-01-31 14:44:15 +01:00

11 lines
138 B
Nix

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