nix/modules/nixos.nix
2023-08-21 18:23:38 +09:00

21 lines
No EOL
537 B
Nix

{ pkgs, config, ... }: {
# Enable flakes: https://nixos.wiki/wiki/Flakes
nix.settings.experimental-features = [ "nix-command" "flakes" ];
# Keep the system up-to-date automatically
system = {
autoUpgrade = {
enable = true;
allowReboot = false;
dates = "daily";
flake = "path:/etc/nixos/flake.nix";
};
};
# Garbage collection -- Keep the system clean
nix.gc = {
automatic = true;
dates = "daily";
options = "--delete-older-than 7d";
};
}