nixos-config/system/updates.nix

13 lines
235 B
Nix
Raw Normal View History

{ config, pkgs, pkgs-stable, ... }:
2024-07-30 22:56:44 +02:00
{
system.autoUpgrade = {
enable = true;
dates = "04:00";
flake = "../flake.nix";
flags = [
2024-08-03 17:34:34 +02:00
"--update-input" "nixpkgs" "--commit-lock-file"
2024-07-30 22:56:44 +02:00
];
allowReboot = true;
};
}