1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-19 07:59:24 +03:00
nixpkgs/nixos/maintainers/scripts/azure-new/examples/basic/image.nix

16 lines
319 B
Nix
Raw Normal View History

let
pkgs = (import ../../../../../../default.nix { });
machine = import (pkgs.path + "/nixos/lib/eval-config.nix") {
system = "x86_64-linux";
modules = [
(
{ config, ... }:
{
imports = [ ./system.nix ];
}
)
];
};
in
machine.config.system.build.azureImage