Garbage collection

This commit is contained in:
Nio 2026-05-08 11:01:53 +02:00
parent 999997ce04
commit d4842c4986

View file

@ -29,6 +29,19 @@
# Flake
nix.settings.experimental-features = [ "nix-command" "flakes" ];
# Garbage collection
nix.gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 30d";
};
# Storage optimisation
nix.optimise = {
automatic = true;
dates = [ "weekly" ];
};
# Enable networking
networking.networkmanager.enable = true;