nixpkgs/nixos/maintainers/scripts/azure-new/examples/basic/image.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
319 B
Nix
Raw Normal View History

let
2020-04-27 02:11:10 -07:00
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