nixos-config/modules/system/upgrades/default.nix

19 lines
402 B
Nix

{ hostName, ... }:
{
system.autoUpgrade = {
enable = true;
dates = "04:00";
persistent = true;
flake = "github:Moe1369/nixos-config#${hostName}";
flags = [
"--update-input" "nixpkgs"
"--update-input" "home-manager"
"--update-input" "jovian"
"--update-input" "nix-flatpak"
"-L"
"--commit-lock-file"
];
allowReboot = true;
};
}