16 lines
319 B
Nix
16 lines
319 B
Nix
|
|
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
|