openstack-image: use system.build.image
This commit is contained in:
@@ -3,19 +3,24 @@
|
|||||||
{ config, lib, pkgs, ... }:
|
{ config, lib, pkgs, ... }:
|
||||||
let
|
let
|
||||||
copyChannel = true;
|
copyChannel = true;
|
||||||
|
format = "qcow2";
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
../../../modules/virtualisation/openstack-config.nix
|
../../../modules/virtualisation/openstack-config.nix
|
||||||
|
../../../modules/image/file-options.nix
|
||||||
] ++ (lib.optional copyChannel ../../../modules/installer/cd-dvd/channel.nix);
|
] ++ (lib.optional copyChannel ../../../modules/installer/cd-dvd/channel.nix);
|
||||||
|
|
||||||
documentation.enable = copyChannel;
|
documentation.enable = copyChannel;
|
||||||
|
|
||||||
|
image.extension = format;
|
||||||
|
system.nixos.tags = [ "openstack" ];
|
||||||
|
system.build.image = config.system.build.openstackImage;
|
||||||
system.build.openstackImage = import ../../../lib/make-disk-image.nix {
|
system.build.openstackImage = import ../../../lib/make-disk-image.nix {
|
||||||
inherit lib config copyChannel;
|
inherit lib config copyChannel format;
|
||||||
|
inherit (config.image) baseName;
|
||||||
additionalSpace = "1024M";
|
additionalSpace = "1024M";
|
||||||
pkgs = import ../../../.. { inherit (pkgs) system; }; # ensure we use the regular qemu-kvm package
|
pkgs = import ../../../.. { inherit (pkgs) system; }; # ensure we use the regular qemu-kvm package
|
||||||
format = "qcow2";
|
|
||||||
configFile = pkgs.writeText "configuration.nix"
|
configFile = pkgs.writeText "configuration.nix"
|
||||||
''
|
''
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user