From 16a7d7e982a3c39323a2af824048816cc92a0249 Mon Sep 17 00:00:00 2001 From: codgician <15964984+codgician@users.noreply.github.com> Date: Wed, 7 May 2025 17:07:53 +0800 Subject: [PATCH] waagent: support AutoUpdate.UpdateToLatestVersion in module --- nixos/modules/virtualisation/waagent.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/modules/virtualisation/waagent.nix b/nixos/modules/virtualisation/waagent.nix index d09bb99939b6..4929b8435170 100644 --- a/nixos/modules/virtualisation/waagent.nix +++ b/nixos/modules/virtualisation/waagent.nix @@ -228,11 +228,11 @@ let }; }; - AutoUpdate.Enable = lib.mkOption { + AutoUpdate.UpdateToLatestVersion = lib.mkOption { type = types.bool; default = false; description = '' - Whether or not to enable autoupdate for goal state processing. + Whether or not to enable auto-update of the Extension Handler. ''; }; };