20 lines
No EOL
527 B
Nix
20 lines
No EOL
527 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;
|
|
channel = https://channels.nixos.org/nixos-23.05;
|
|
};
|
|
};
|
|
|
|
# Garbage collection -- Keep the system clean
|
|
nix.gc = {
|
|
automatic = true;
|
|
dates = "daily";
|
|
options = "--delete-older-than 7d";
|
|
};
|
|
} |