26 lines
579 B
Nix
26 lines
579 B
Nix
![]() |
{ 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)}
|
||
|
'';
|
||
|
};
|
||
|
}
|