nix/nixos/common/modules/nixos.nix
2024-01-12 10:10:25 +09:00

11 lines
No EOL
281 B
Nix

{ ... }: {
# Enable flakes: https://nixos.wiki/wiki/Flakes
nix.settings.experimental-features = [ "nix-command" "flakes" ];
# Garbage collection -- Keep the system clean
nix.gc = {
automatic = true;
dates = "daily";
options = "--delete-older-than 7d";
};
}