nix-infra/config/common/nix.nix

16 lines
254 B
Nix
Raw Normal View History

{ ... }:
{
nix = {
settings = {
auto-optimise-store = true;
experimental-features = [ "nix-command" "flakes" ];
};
gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 30d";
};
};
}