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";
};
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";
};
These are the lines in my
configuration.nix
file. The system automatically reboots after the update.