nix-da/modules/nix/default.nix
2024-07-10 00:35:27 +02:00

28 lines
481 B
Nix

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