mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 19:51:17 +00:00
5aa4273e4f
(cherry picked from commit f3aa040bcb
)
23 lines
600 B
Nix
23 lines
600 B
Nix
# nix-build '<nixpkgs/nixos>' -A config.system.build.cloudstackImage --arg configuration "{ imports = [ ./nixos/maintainers/scripts/cloudstack/cloudstack-image.nix ]; }"
|
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
imports =
|
|
[ ../../../modules/virtualisation/cloudstack-config.nix ];
|
|
|
|
system.build.cloudstackImage = import ../../../lib/make-disk-image.nix {
|
|
inherit lib config pkgs;
|
|
format = "qcow2";
|
|
configFile = pkgs.writeText "configuration.nix"
|
|
''
|
|
{
|
|
imports = [ <nixpkgs/nixos/modules/virtualisation/cloudstack-config.nix> ];
|
|
}
|
|
'';
|
|
};
|
|
|
|
}
|