nix/modules/update/default.nix
2024-08-21 09:02:49 +02:00

14 lines
246 B
Nix

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