nix/modules/update/default.nix

18 lines
257 B
Nix
Raw Normal View History

2024-07-09 22:28:44 +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";
randomizedDelaySec = "45min";
};
}