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";
};

  • cfx_4188B
    link
    fedilink
    English
    arrow-up
    1
    ·
    10 months ago

    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;