2018-07-20 20:56:59 +00:00
|
|
|
{ modulesPath, ... }:
|
2016-03-03 03:58:51 +02:00
|
|
|
|
|
|
|
{
|
|
|
|
# To build the configuration or use nix-env, you need to run
|
|
|
|
# either nixos-rebuild --upgrade or nix-channel --update
|
|
|
|
# to fetch the nixos channel.
|
|
|
|
|
|
|
|
# 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.
|
2024-11-27 21:23:30 +08:00
|
|
|
imports = [
|
|
|
|
"${modulesPath}/virtualisation/azure-common.nix"
|
|
|
|
"${modulesPath}/virtualisation/azure-image.nix"
|
|
|
|
];
|
|
|
|
|
2024-12-29 19:07:38 +08:00
|
|
|
# Please set the VM Generation to the actual value
|
|
|
|
# virtualisation.azureImage.vmGeneration = "v1";
|
2016-03-03 03:58:51 +02:00
|
|
|
}
|