nix/common/configuration/nix.nix

15 lines
244 B
Nix
Raw Normal View History

2023-06-18 23:00:40 +00:00
{
nix = {
settings = {
experimental-features = [ "nix-command" "flakes" ];
auto-optimise-store = true;
};
gc = {
automatic = true;
dates = "daily";
options = "--delete-older-than 14d";
};
};
}