nix/nixos/common/modules/nixos.nix
2024-04-17 11:21:57 +09:00

16 lines
353 B
Nix

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