nix/modules/update/default.nix

14 lines
246 B
Nix
Raw Normal View History

2024-08-21 09:02:49 +02:00
{inputs, ...}: {
2024-07-09 22:27:56 +02:00
system.autoUpgrade = {
enable = true;
flake = inputs.self.outPath;
flags = [
"--update-input"
"nixpkgs"
"-L" # print build logs
];
dates = "02:00";
2024-08-21 09:02:49 +02:00
randomizedDelaySec = "45min";
};
2024-07-09 22:27:56 +02:00
}