nixos/azure: move image specific config out of azure-common

This commit is contained in:
codgician 2024-11-27 21:23:30 +08:00
parent 0842888553
commit 6b9a77767a
No known key found for this signature in database
3 changed files with 84 additions and 49 deletions

View file

@ -8,5 +8,11 @@
# This configures everything but bootstrap services,
# which only need to be run once and have already finished
# if you are able to see this comment.
imports = [ "${modulesPath}/virtualisation/azure-common.nix" ];
imports = [
"${modulesPath}/virtualisation/azure-common.nix"
"${modulesPath}/virtualisation/azure-image.nix"
];
# Please update the VM Generation to the actual value
virtualisation.azureImage.vmGeneration = "v1";
}