stockholm/lass/2configs/gc.nix

10 lines
212 B
Nix

{ config, ... }:
with import <stockholm/lib>;
{
nix.gc = {
automatic = ! (elem config.krebs.build.host.name [ "mors" "xerxes" ] || config.boot.isContainer);
options = "--delete-older-than 15d";
};
}