nix-da/modules/nix/default.nix

20 lines
415 B
Nix

{ ... }:
{
nix = {
gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 20d";
# Catch up on missed runs due to being powered off
persistent = true;
};
settings = {
# Deduplicate identical files in the store regularly
optimise.automatic = true;
experimental-features = [
"nix-command"
"flakes"
];
};
};
}