nix/modules/update/default.nix
2024-07-09 22:27:56 +02:00

18 lines
249 B
Nix

{ ... }:
{
system.autoUpgrade = {
enable = true;
flake = inputs.self.outPath;
flags = [
"--update-input"
"nixpkgs"
"-L" # print build logs
];
dates = "02:00";
randomizedDelaySec = "45min";
};
}