NixToSee/modules/pkg_mgrmnt/unattended-updates.nix
2025-05-30 00:59:17 +02:00

13 lines
243 B
Nix

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