18 lines
249 B
Nix
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";
|
||
|
};
|
||
|
|
||
|
}
|