nixos-demo/os/update.nix

26 lines
579 B
Nix
Raw Normal View History

2025-07-12 00:28:21 +02:00
{ config, ... }:
{
system.autoUpgrade = {
enable = true;
allowReboot = false;
flake = "git+https://code.beancloud.de/public/nixos-demo.git?ref=${config.beancloud.tier}#${config.networking.hostName}";
dates = "02:00";
randomizedDelaySec = "45min";
};
nix = {
optimise = {
automatic = true;
};
gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 30d";
};
extraOptions = ''
min-free = ${toString (1024 * 1024 * 1024)}
max-free = ${toString (4096 * 1024 * 1024)}
'';
};
}