nix-da/modules/nix/default.nix
2024-05-16 04:13:42 +09:00

14 lines
218 B
Nix

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