nix/nixos/common/modules/nixos.nix
2024-04-25 15:53:37 +09:00

17 lines
329 B
Nix

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