nix/nixos/common/modules/nixos.nix

17 lines
352 B
Nix
Raw Normal View History

2023-08-23 14:30:15 +09:00
{ ... }: {
# Enable flakes: https://nixos.wiki/wiki/Flakes
nix.settings.experimental-features = [ "nix-command" "flakes" ];
2024-02-21 11:00:07 +09:00
nix.optimise = {
automatic = true;
2024-02-23 13:21:27 +09:00
dates = ["daily"];
2024-02-21 11:00:07 +09:00
};
# Garbage collection -- Keep the system clean
nix.gc = {
automatic = true;
dates = "daily";
options = "--delete-older-than 7d";
};
2024-02-21 11:00:07 +09:00
}