I’ve set up autoUpgrades
on my NixOS system, but how do I check it’s working and doing updates?
system.autoUpgrade = {
enable = true;
dates = "daily";
persistent = true;
operation = "boot";
};
You must log in or register to comment.
These are the lines in my
configuration.nix
file. The system automatically reboots after the update.
#Allow autoupdate system.autoUpgrade.enable = true; system.autoUpgrade.allowReboot = true;