nixos-config/system/updates.nix

13 lines
216 B
Nix

{ config, pkgs, pkgs-unstable, ... }:
{
system.autoUpgrade = {
enable = true;
dates = "04:00";
flake = "../flake.nix";
flags = [
"--update-input" "nixpkgs"
];
allowReboot = true;
};
}